From 88047f656885477a50fda43922a92c0fbb851e5e Mon Sep 17 00:00:00 2001 From: Randy Armstrong Date: Fri, 12 Apr 2019 21:03:21 -0700 Subject: [PATCH] Refactor to allow building of multiple specification versions. --- BuildStandardTypes.bat | 42 +- Core/Schema/Opc.Ua.NodeSet.xml | 899 +--- Core/Schema/Opc.Ua.NodeSet2.xml | 4634 ++++++++++++++--- Core/Schema/Opc.Ua.Types.bsd | 2 +- Core/Schema/UANodeSet.cs | 12 - Core/Schema/UANodeSet.xsd | 3 +- Core/Schema/UANodeSetHelpers.cs | 4 +- .../Generated/Opc.Ua.PredefinedNodes.uanodes | Bin 685829 -> 685829 bytes .../Generated/Opc.Ua.PredefinedNodes.xml | 606 +-- Core/Types/Encoders/XmlEncoder.cs | 5 + Core/Types/Schemas/SchemaValidator.cs | 2 + ModelCompiler/Design.v103/BuiltInTypes.xml | 2 +- ModelCompiler/Design.v103/MDIS.csv | 425 ++ ModelCompiler/Design.v103/MDIS.xml | 604 +++ ModelCompiler/Design.v103/SercosModel.csv | 119 + ModelCompiler/Design.v103/SercosModel.xml | 143 + ModelCompiler/Design.v103/StandardTypes.xml | 2 +- .../Design.v103/UA Defined Types.xml | 2065 +++----- ModelCompiler/Design.v104/BuiltInTypes.xml | 2 +- ModelCompiler/Design.v104/MDIS.csv | 395 ++ ModelCompiler/Design.v104/MDIS.xml | 549 ++ ModelCompiler/Design.v104/MTConnectModel.csv | 33 + ModelCompiler/Design.v104/MTConnectModel.xml | 54 + ModelCompiler/Design.v104/OpcUaAdiModel.csv | 133 +- ModelCompiler/Design.v104/OpcUaAdiModel.xml | 56 +- ModelCompiler/Design.v104/OpcUaDiModel.csv | 33 + ModelCompiler/Design.v104/OpcUaDiModel.xml | 62 +- .../Design.v104/OpcUaFdiPart5Model.csv | 33 + .../Design.v104/OpcUaFdiPart5Model.xml | 60 +- .../Design.v104/OpcUaFdiPart7Model.csv | 265 +- .../Design.v104/OpcUaFdiPart7Model.xml | 57 +- ModelCompiler/Design.v104/OpcUaGdsModel.csv | 6 + ModelCompiler/Design.v104/OpcUaGdsModel.xml | 17 +- .../Design.v104/OpcUaPLCopenModel.csv | 55 +- .../Design.v104/OpcUaPLCopenModel.xml | 60 +- ModelCompiler/Design.v104/SercosModel.csv | 8 +- ModelCompiler/Design.v104/SercosModel.xml | 4 +- ModelCompiler/Design.v104/StandardTypes.csv | 229 +- ModelCompiler/Design.v104/StandardTypes.xml | 518 +- .../Design.v104/UA Core Services.xml | 237 +- .../Design.v104/UA Defined Types.xml | 2638 ++++------ ModelCompiler/Design.v104/UA Status Codes.xml | 8 +- ModelCompiler/Design/BuiltInTypes.xml | 2 +- ModelCompiler/Design/OpcUaDiModelv10.csv | 44 - ModelCompiler/Design/OpcUaDiModelv10.xml | 146 - ModelCompiler/Design/OpcUaDiModelv11.csv | 477 -- ModelCompiler/Design/OpcUaDiModelv11.xml | 442 -- ModelCompiler/Design/OpcUaFdiPart5Model.xml | 6 +- .../Design/OpcUaFdiPart7Model_v1.1.csv | 2144 -------- .../Design/OpcUaFdiPart7Model_v1.1.xml | 722 --- .../Design/OpcUaFdiPart7Model_v1.3.xml | 721 --- ModelCompiler/Design/StandardsTypeV1.csv | 1535 ------ ModelCompiler/Design/UA Defined Types.xml | 2 +- ModelCompiler/ModelDesignerValidator.cs | 97 +- ModelCompiler/ModelGenerator2.cs | 28 +- ModelCompiler/Program.cs | 18 +- ModelCompiler/StackGenerator.cs | 100 +- .../StackGenerator/AnsiC/AnsiCGenerator.cs | 5 +- ModelCompiler/StackGenerator/CodeGenerator.cs | 4 +- .../DataTypes/BinarySchemaGenerator.cs | 8 +- .../DataTypes/ConstantsGenerator.cs | 5 +- .../DataTypes/SchemaGenerator.cs | 4 +- .../Templates/BinarySchema/BuiltInTypes.bsd | 2 +- .../DataTypes/XmlSchemaGenerator.cs | 2 +- .../StackGenerator/DotNet/DotNetGenerator.cs | 5 +- .../Validators/TypeDictionaryValidator.cs | 24 +- .../StackGenerator/Wireshark/Wireshark.cs | 7 +- .../Templates/BinarySchema/BuiltInTypes.bsd | 2 +- ModelCompiler/UA Model Compiler.csproj | 65 +- PublishModel.bat | 16 +- 70 files changed, 9563 insertions(+), 12151 deletions(-) create mode 100644 ModelCompiler/Design.v103/MDIS.csv create mode 100644 ModelCompiler/Design.v103/MDIS.xml create mode 100644 ModelCompiler/Design.v103/SercosModel.csv create mode 100644 ModelCompiler/Design.v103/SercosModel.xml create mode 100644 ModelCompiler/Design.v104/MDIS.csv create mode 100644 ModelCompiler/Design.v104/MDIS.xml delete mode 100644 ModelCompiler/Design/OpcUaDiModelv10.csv delete mode 100644 ModelCompiler/Design/OpcUaDiModelv10.xml delete mode 100644 ModelCompiler/Design/OpcUaDiModelv11.csv delete mode 100644 ModelCompiler/Design/OpcUaDiModelv11.xml delete mode 100644 ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.csv delete mode 100644 ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.xml delete mode 100644 ModelCompiler/Design/OpcUaFdiPart7Model_v1.3.xml delete mode 100644 ModelCompiler/Design/StandardsTypeV1.csv diff --git a/BuildStandardTypes.bat b/BuildStandardTypes.bat index 4f803506..feaeb5b9 100644 --- a/BuildStandardTypes.bat +++ b/BuildStandardTypes.bat @@ -9,8 +9,13 @@ REM **************************************************************************** SETLOCAL set MODELCOMPILER=.\Bin\Release\Opc.Ua.ModelCompiler.exe -set OUTPUT=.\Published -set EXCLUDE=-exclude nothing +set OUTPUT=..\nodesets +set INPUT=.\ModelCompiler\Design + +IF NOT "%1"=="" (set OUTPUT=%OUTPUT%\%1) else (set OUTPUT=%OUTPUT%\master) +IF NOT "%1"=="" (set INPUT=%INPUT%.%1) else (set INPUT=%INPUT%) +IF NOT "%1"=="" set VERSION=-version %1 +IF NOT "%2"=="" set EXCLUDE=-exclude %2 REM Set the following values to automatically copy the generated source code to your relevant stack locations REM @@ -23,7 +28,7 @@ REM REM Leaving these fields empty will skip the operation set ANSIC_TARGET= -set DOTNET_TARGET= +set DOTNET_TARGET=X:\Work\OPC\UA-ModelCompiler\Core\ set GDS_TARGET= set DI_TARGET= set ADI_TARGET= @@ -40,32 +45,35 @@ REM STEP 1) Generate all of our files first... SET PARTNAME="StandardTypes" ECHO Building Model %PARTNAME% -ECHO %MODELCOMPILER% -d2 ".\ModelCompiler\Design\StandardTypes.xml" %EXCLUDE% -d2 ".\ModelCompiler\Design\UA Core Services.xml" -c ".\ModelCompiler\Design\StandardTypes.csv" -o2 "%OUTPUT%\Schema\" -stack "%OUTPUT%\DotNet\" -ansic "%OUTPUT%\AnsiC\" -%MODELCOMPILER% -d2 ".\ModelCompiler\Design\StandardTypes.xml" %EXCLUDE% -d2 ".\ModelCompiler\Design\UA Core Services.xml" -c ".\ModelCompiler\Design\StandardTypes.csv" -o2 "%OUTPUT%\Schema\" -stack "%OUTPUT%\DotNet\" -ansic "%OUTPUT%\AnsiC\" +ECHO %MODELCOMPILER% -d2 "%INPUT%\StandardTypes.xml" %VERSION% %EXCLUDE% -d2 "%INPUT%\UA Core Services.xml" -c "%INPUT%\StandardTypes.csv" -o2 "%OUTPUT%\Schema\" -stack "%OUTPUT%\DotNet\" -ansic "%OUTPUT%\AnsiC\" +%MODELCOMPILER% -d2 "%INPUT%\StandardTypes.xml" %VERSION% %EXCLUDE% -d2 "%INPUT%\UA Core Services.xml" -c "%INPUT%\StandardTypes.csv" -o2 "%OUTPUT%\Schema\" -stack "%OUTPUT%\DotNet\" -ansic "%OUTPUT%\AnsiC\" IF %ERRORLEVEL% NEQ 0 ( ECHO Failed %PARTNAME% & EXIT /B 1 ) -CALL PublishModel OpcUaGdsModel GDS -CALL PublishModel OpcUaDiModel DI -REM CALL PublishModel OpcUaAdiModel ADI -REM CALL PublishModel OpcUaPLCopenModel PLCopen -REM CALL PublishModel MTConnectModel MTConnect -REM CALL PublishModel OpcUaFDIPart5Model FDI -REM CALL PublishModel OpcUaFDIPart7Model FDI -REM CALL PublishModel SercosModel Sercos -REM CALL PublishModel MDIS MDIS +CALL PublishModel OpcUaGdsModel GDS %1 %2 +CALL PublishModel OpcUaDiModel DI %1 %2 + +IF "%1"=="v103" ( + CALL PublishModel OpcUaAdiModel ADI %1 %2 + CALL PublishModel OpcUaPLCopenModel PLCopen %1 %2 + CALL PublishModel MTConnectModel MTConnect %1 %2 + CALL PublishModel OpcUaFDIPart5Model FDI %1 %2 + CALL PublishModel OpcUaFDIPart7Model FDI %1 %2 + CALL PublishModel MDIS MDIS %1 %2 + CALL PublishModel SercosModel Sercos %1 %2 +) REM SET PARTNAME="DemoModel" REM ECHO Building %PARTNAME% REM IF NOT EXIST %OUTPUT%\DemoModel MKDIR %OUTPUT%\DemoModel -REM %MODELCOMPILER% -d2 ".\ModelCompiler\Design\DemoModel.xml" -cg ".\ModelCompiler\Design\DemoModel.csv" -o2 "%OUTPUT%\DemoModel\" +REM %MODELCOMPILER% -d2 "%INPUT%\DemoModel.xml" -cg "%INPUT%\DemoModel.csv" -o2 "%OUTPUT%\DemoModel\" REM IF %ERRORLEVEL% NEQ 0 ( ECHO Failed %PARTNAME% & EXIT /B 5 ) REM STEP 2) Copy the generated files to the OUTPUT directory which is how our nodeset files are created... ECHO Copying CSV files to %OUTPUT%\Schema\ ECHO ON -COPY ".\ModelCompiler\Design\StandardTypes.csv" "%OUTPUT%\Schema\NodeIds.csv" -COPY ".\ModelCompiler\Design\UA Attributes.csv" "%OUTPUT%\Schema\AttributeIds.csv" +COPY "%INPUT%\StandardTypes.csv" "%OUTPUT%\Schema\NodeIds.csv" +COPY "%INPUT%\UA Attributes.csv" "%OUTPUT%\Schema\AttributeIds.csv" COPY "%OUTPUT%\DotNet\Opc.Ua.StatusCodes.csv" "%OUTPUT%\Schema\StatusCode.csv" COPY ".\Core\Schema\UANodeSet.xsd" "%OUTPUT%\Schema\UANodeSet.xsd" COPY ".\Core\Schema\SecuredApplication.xsd" "%OUTPUT%\Schema\SecuredApplication.xsd" diff --git a/Core/Schema/Opc.Ua.NodeSet.xml b/Core/Schema/Opc.Ua.NodeSet.xml index 10651147..5788ec0e 100644 --- a/Core/Schema/Opc.Ua.NodeSet.xml +++ b/Core/Schema/Opc.Ua.NodeSet.xml @@ -19440,10 +19440,7 @@ - - - - + @@ -35218,10 +35215,7 @@ - - - - + @@ -35285,10 +35279,7 @@ - - - - + @@ -40708,10 +40699,7 @@ - - - - + @@ -40987,7 +40975,6 @@ 0 - @@ -41116,10 +41103,7 @@ - - - - + @@ -41462,7 +41446,6 @@ 0 - @@ -41781,10 +41764,7 @@ - - - - + @@ -41857,10 +41837,7 @@ - - - - + @@ -42037,10 +42014,7 @@ - - - - + @@ -42113,10 +42087,7 @@ - - - - + @@ -42189,10 +42160,7 @@ - - - - + @@ -42265,10 +42233,7 @@ - - - - + @@ -42341,10 +42306,7 @@ - - - - + @@ -43152,10 +43114,7 @@ - - - - + @@ -45061,10 +45020,7 @@ - - - - + @@ -48889,10 +48845,7 @@ - - - - + @@ -56216,10 +56169,7 @@ - - - - + @@ -56367,10 +56317,7 @@ - - - - + @@ -56591,10 +56538,7 @@ - - - - + @@ -60056,8 +60000,8 @@ aWFnbm9zdGljIGluZm9ybWF0aW9uIGFzc29jaWF0ZWQgd2l0aCBhIHN0YXR1cyBjb2RlLjwvb3Bj OkRvY3VtZW50YXRpb24+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJTeW1ib2xpY0lkU3BlY2lmaWVk IiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZpZWxkIE5hbWU9Ik5hbWVzcGFjZVVS SVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJM -b2NhbGVTcGVjaWZpZWQiIFR5cGVOYW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFt -ZT0iTG9jYWxpemVkVGV4dFNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w +b2NhbGl6ZWRUZXh0U3BlY2lmaWVkIiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZp +ZWxkIE5hbWU9IkxvY2FsZVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w YzpGaWVsZCBOYW1lPSJBZGRpdGlvbmFsSW5mb1NwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQi IC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJJbm5lclN0YXR1c0NvZGVTcGVjaWZpZWQiIFR5cGVO YW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFtZT0iSW5uZXJEaWFnbm9zdGljSW5m @@ -75625,10 +75569,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -75756,10 +75697,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -76370,10 +76308,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -76875,10 +76810,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -77051,10 +76983,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -77880,10 +77809,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -78056,10 +77982,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -78430,10 +78353,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -79203,10 +79123,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -79397,10 +79314,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -79528,10 +79442,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -79902,10 +79813,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -80353,10 +80261,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -80504,10 +80409,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -82165,10 +82067,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -82382,10 +82281,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -82533,10 +82429,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -83068,10 +82961,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -83244,10 +83134,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -83618,10 +83505,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -83992,10 +83876,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -84366,10 +84247,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -85075,10 +84953,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -85142,10 +85017,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -85275,10 +85147,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -90078,10 +89947,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -90415,7 +90281,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -90496,7 +90361,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -90512,7 +90376,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -90644,7 +90507,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -90716,7 +90578,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -90732,7 +90593,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -92776,7 +92636,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -92857,7 +92716,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -92998,7 +92856,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93148,7 +93005,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93164,7 +93020,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93245,7 +93100,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93386,7 +93240,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93402,7 +93255,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93552,7 +93404,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93633,7 +93484,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93774,7 +93624,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -93790,7 +93639,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -94879,7 +94727,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -94960,7 +94807,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95101,7 +94947,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95251,7 +95096,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95267,7 +95111,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95348,7 +95191,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95489,7 +95331,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95505,7 +95346,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95655,7 +95495,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95736,7 +95575,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95877,7 +95715,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -95893,7 +95730,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -97697,10 +97533,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -97828,10 +97661,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -97895,10 +97725,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -98193,7 +98020,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Unspecified - @@ -98208,7 +98034,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Object - @@ -98223,7 +98048,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Variable - @@ -98238,7 +98062,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Method - @@ -98253,7 +98076,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ObjectType - @@ -98268,7 +98090,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= VariableType - @@ -98283,7 +98104,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ReferenceType - @@ -98298,7 +98118,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= DataType - @@ -98313,7 +98132,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= View - @@ -98393,7 +98211,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= None - @@ -98408,7 +98225,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= AccessLevel - @@ -98423,7 +98239,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ArrayDimensions - @@ -98438,7 +98253,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= BrowseName - @@ -98453,7 +98267,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ContainsNoLoops - @@ -98468,7 +98281,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= DataType - @@ -98483,7 +98295,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Description - @@ -98498,7 +98309,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= DisplayName - @@ -98513,7 +98323,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= EventNotifier - @@ -98528,7 +98337,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Executable - @@ -98543,7 +98351,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Historizing - @@ -98558,7 +98365,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= InverseName - @@ -98573,7 +98379,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= IsAbstract - @@ -98588,7 +98393,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= MinimumSamplingInterval - @@ -98603,7 +98407,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= NodeClass - @@ -98618,7 +98421,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= NodeId - @@ -98633,7 +98435,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Symmetric - @@ -98648,7 +98449,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= UserAccessLevel - @@ -98663,7 +98463,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= UserExecutable - @@ -98678,7 +98477,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= UserWriteMask - @@ -98693,7 +98491,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ValueRank - @@ -98708,7 +98505,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= WriteMask - @@ -98723,7 +98519,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Value - @@ -98738,7 +98533,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= DataTypeDefinition - @@ -98753,7 +98547,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= RolePermissions - @@ -98768,7 +98561,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= AccessRestrictions - @@ -98783,7 +98575,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= All - @@ -98798,7 +98589,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= BaseNode - @@ -98813,7 +98603,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Object - @@ -98828,7 +98617,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ObjectType - @@ -98843,7 +98631,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Variable - @@ -98858,7 +98645,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= VariableType - @@ -98873,7 +98659,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Method - @@ -98888,7 +98673,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= ReferenceType - @@ -98903,7 +98687,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= View - @@ -98983,7 +98766,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Insert - @@ -98998,7 +98780,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Replace - @@ -99013,7 +98794,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Update - @@ -99028,7 +98808,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Delete - @@ -99108,7 +98887,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Insert - @@ -99123,7 +98901,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Replace - @@ -99138,7 +98915,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Update - @@ -99153,7 +98929,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Remove - @@ -99403,7 +99178,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Read - @@ -99418,7 +99192,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Write - @@ -99433,7 +99206,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= EraseExisting - @@ -99448,7 +99220,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Append - @@ -100485,10 +100256,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -107951,7 +107719,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108032,7 +107799,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108182,7 +107948,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108323,7 +108088,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108339,7 +108103,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108480,7 +108243,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108496,7 +108258,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -108618,7 +108379,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= None - @@ -108633,7 +108393,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= TrustedCertificates - @@ -108648,7 +108407,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= TrustedCrls - @@ -108663,7 +108421,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= IssuerCertificates - @@ -108678,7 +108435,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= IssuerCrls - @@ -108693,7 +108449,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= All - @@ -109495,7 +109250,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -109511,7 +109265,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -109527,7 +109280,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -109543,7 +109295,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -109559,7 +109310,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -109575,7 +109325,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -109656,7 +109405,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110429,7 +110177,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110501,7 +110248,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110624,7 +110370,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110756,7 +110501,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110772,7 +110516,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110844,7 +110587,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110967,7 +110709,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -110983,7 +110724,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111115,7 +110855,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111187,7 +110926,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111310,7 +111048,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111326,7 +111063,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111513,7 +111249,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111585,7 +111320,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111717,7 +111451,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111840,7 +111573,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111856,7 +111588,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111979,7 +111710,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -111995,7 +111725,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -112542,7 +112271,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113031,7 +112759,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113047,7 +112774,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113063,7 +112789,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113079,7 +112804,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113095,7 +112819,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113176,7 +112899,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113359,7 +113081,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113375,7 +113096,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113391,7 +113111,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113407,7 +113126,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113423,7 +113141,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113495,7 +113212,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113733,7 +113449,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113749,7 +113464,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113830,7 +113544,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113962,7 +113675,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -113978,7 +113690,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -114050,7 +113761,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -114731,7 +114441,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -114854,7 +114563,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -121608,7 +121316,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -121731,7 +121438,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122101,7 +121807,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122117,7 +121822,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122133,7 +121837,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122149,7 +121852,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122165,7 +121867,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122343,7 +122044,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122359,7 +122059,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122375,7 +122074,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122391,7 +122089,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -122407,7 +122104,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -123941,7 +123637,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124022,7 +123717,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124172,7 +123866,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124188,7 +123881,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124269,7 +123961,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124285,7 +123976,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124435,7 +124125,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124451,7 +124140,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124467,7 +124155,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124483,7 +124170,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -124564,7 +124250,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125110,7 +124795,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125191,7 +124875,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125332,7 +125015,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125482,7 +125164,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125498,7 +125179,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125579,7 +125259,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125720,7 +125399,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125736,7 +125414,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125886,7 +125563,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -125967,7 +125643,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126108,7 +125783,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126124,7 +125798,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126274,7 +125947,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126355,7 +126027,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126505,7 +126176,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126521,7 +126191,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126602,7 +126271,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126618,7 +126286,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126759,7 +126426,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126909,7 +126575,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126925,7 +126590,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126941,7 +126605,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -126957,7 +126620,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127038,7 +126700,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127602,7 +127263,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127683,7 +127343,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127824,7 +127483,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127974,7 +127632,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -127990,7 +127647,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128071,7 +127727,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128212,7 +127867,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128228,7 +127882,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128378,7 +128031,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128459,7 +128111,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128600,7 +128251,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128616,7 +128266,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128830,7 +128479,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -128911,7 +128559,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129239,7 +128886,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129255,7 +128901,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129271,7 +128916,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129287,7 +128931,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -129303,7 +128946,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129319,7 +128961,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -129391,7 +129032,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130091,7 +129731,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130172,7 +129811,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130313,7 +129951,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130463,7 +130100,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130479,7 +130115,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130560,7 +130195,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130701,7 +130335,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130717,7 +130350,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130867,7 +130499,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -130948,7 +130579,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -131089,7 +130719,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -131105,7 +130734,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -131319,7 +130947,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -131400,7 +131027,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132096,7 +131722,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132177,7 +131802,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132318,7 +131942,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132468,7 +132091,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132484,7 +132106,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132565,7 +132186,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132706,7 +132326,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132722,7 +132341,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132872,7 +132490,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -132953,7 +132570,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -133094,7 +132710,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -133110,7 +132725,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -133324,7 +132938,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -133405,7 +133018,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134101,7 +133713,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134182,7 +133793,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134323,7 +133933,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134473,7 +134082,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134489,7 +134097,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134570,7 +134177,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134711,7 +134317,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134727,7 +134332,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134877,7 +134481,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -134958,7 +134561,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -135099,7 +134701,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -135115,7 +134716,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -135329,7 +134929,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -135410,7 +135009,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136106,7 +135704,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136187,7 +135784,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136328,7 +135924,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136478,7 +136073,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136494,7 +136088,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136575,7 +136168,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136716,7 +136308,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136732,7 +136323,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136882,7 +136472,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -136963,7 +136552,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -137104,7 +136692,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -137120,7 +136707,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -137334,7 +136920,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -137415,7 +137000,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138170,7 +137754,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138251,7 +137834,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138392,7 +137974,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138542,7 +138123,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138558,7 +138138,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138639,7 +138218,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138780,7 +138358,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138796,7 +138373,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -138946,7 +138522,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -139027,7 +138602,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -139168,7 +138742,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -139184,7 +138757,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -139398,7 +138970,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -139479,7 +139050,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140198,7 +139768,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140270,7 +139839,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140393,7 +139961,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140525,7 +140092,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140541,7 +140107,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140613,7 +140178,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140736,7 +140300,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140752,7 +140315,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140884,7 +140446,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -140956,7 +140517,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141079,7 +140639,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141095,7 +140654,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141282,7 +140840,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141354,7 +140911,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141486,7 +141042,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141558,7 +141113,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141681,7 +141235,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141697,7 +141250,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141820,7 +141372,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -141836,7 +141387,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142478,7 +142028,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142550,7 +142099,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142673,7 +142221,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142805,7 +142352,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142821,7 +142367,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -142893,7 +142438,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143016,7 +142560,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143032,7 +142575,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143164,7 +142706,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143236,7 +142777,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143359,7 +142899,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143375,7 +142914,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143562,7 +143100,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143634,7 +143171,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143766,7 +143302,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143838,7 +143373,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143961,7 +143495,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -143977,7 +143510,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -144100,7 +143632,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -144116,7 +143647,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -144412,7 +143942,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -144807,7 +144336,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -145822,7 +145350,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146407,7 +145934,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146423,7 +145949,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146439,7 +145964,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146455,7 +145979,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146536,7 +146059,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146552,7 +146074,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146568,7 +146089,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146718,7 +146238,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146734,7 +146253,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146750,7 +146268,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146766,7 +146283,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146782,7 +146298,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -146798,7 +146313,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146879,7 +146393,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -146895,7 +146408,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147036,7 +146548,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147318,7 +146829,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147334,7 +146844,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147350,7 +146859,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147366,7 +146874,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147447,7 +146954,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147463,7 +146969,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147479,7 +146984,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147629,7 +147133,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147645,7 +147148,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147661,7 +147163,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147677,7 +147178,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147693,7 +147193,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -147709,7 +147208,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147790,7 +147288,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147806,7 +147303,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -147947,7 +147443,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -148723,7 +148218,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -148739,7 +148233,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -148755,7 +148248,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -148771,7 +148263,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -148852,7 +148343,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -148868,7 +148358,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -149018,7 +148507,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -149034,7 +148522,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -149115,7 +148602,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -149131,7 +148617,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -153946,7 +153431,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -153962,7 +153446,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -153978,7 +153461,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -153994,7 +153476,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -155553,7 +155034,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -155569,7 +155049,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -155650,7 +155129,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -155800,7 +155278,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -155816,7 +155293,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -155897,7 +155373,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -157279,7 +156754,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157295,7 +156769,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157311,7 +156784,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157383,7 +156855,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157399,7 +156870,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157415,7 +156885,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -157431,7 +156900,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -157447,7 +156915,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163149,7 +162616,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163221,7 +162687,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163412,7 +162877,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163428,7 +162892,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163444,7 +162907,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163460,7 +162922,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163476,7 +162937,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163548,7 +163008,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163564,7 +163023,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163687,7 +163145,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163973,7 +163430,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -163989,7 +163445,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164005,7 +163460,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164021,7 +163475,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164037,7 +163490,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164118,7 +163570,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164134,7 +163585,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164275,7 +163725,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164584,7 +164033,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164600,7 +164048,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164616,7 +164063,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164632,7 +164078,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164648,7 +164093,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164729,7 +164173,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164745,7 +164188,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -164886,7 +164328,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -165355,7 +164796,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -165371,7 +164811,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -2 - @@ -165452,7 +164891,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -165593,7 +165031,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -165986,7 +165423,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -166002,7 +165438,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -2 - @@ -166083,7 +165518,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -166224,7 +165658,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -166489,7 +165922,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -169921,7 +169353,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -170062,7 +169493,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -170469,7 +169899,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= UserName - @@ -170484,7 +169913,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Thumbprint - @@ -170499,7 +169927,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Role - @@ -170514,7 +169941,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= GroupId - @@ -170529,7 +169955,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= Anonymous - @@ -170544,7 +169969,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= AuthenticatedUser - @@ -171401,7 +170825,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -171524,7 +170947,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -172225,7 +171647,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -172348,7 +171769,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -172961,7 +172381,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -173084,7 +172503,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -173697,7 +173115,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -173820,7 +173237,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -174383,7 +173799,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -174506,7 +173921,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -175110,7 +174524,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -175233,7 +174646,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -175837,7 +175249,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -175960,7 +175371,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -176862,7 +176272,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -176943,7 +176352,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -176959,7 +176367,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -176975,7 +176382,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -177125,7 +176531,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -177141,7 +176546,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -177291,7 +176695,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -177372,7 +176775,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -177517,10 +176919,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -181564,7 +180963,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181580,7 +180978,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181596,7 +180993,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181677,7 +181073,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181693,7 +181088,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181709,7 +181103,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -181725,7 +181118,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181741,7 +181133,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181891,7 +181282,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -181972,7 +181362,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182190,7 +181579,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182206,7 +181594,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182222,7 +181609,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182238,7 +181624,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182254,7 +181639,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182335,7 +181719,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182351,7 +181734,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -182492,7 +181874,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -184731,7 +184112,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -184747,7 +184127,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -184828,7 +184207,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -184969,7 +184347,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -186312,7 +185689,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -186435,7 +185811,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -189175,7 +188550,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -189316,7 +188690,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -189457,7 +188830,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -189598,7 +188970,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -189886,7 +189257,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190009,7 +189379,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190132,7 +189501,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190255,7 +189623,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190543,7 +189910,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190666,7 +190032,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190789,7 +190154,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -190912,7 +190276,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191200,7 +190563,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191323,7 +190685,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191446,7 +190807,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191569,7 +190929,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191857,7 +191216,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -191980,7 +191338,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192103,7 +191460,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192226,7 +191582,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192514,7 +191869,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192637,7 +191991,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192760,7 +192113,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -192883,7 +192235,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193171,7 +192522,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193294,7 +192644,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193417,7 +192766,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193540,7 +192888,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193828,7 +193175,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -193951,7 +193297,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194074,7 +193419,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194197,7 +193541,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194485,7 +193828,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194608,7 +193950,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194731,7 +194072,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -194854,7 +194194,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195400,7 +194739,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195416,7 +194754,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195497,7 +194834,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195638,7 +194974,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195770,7 +195105,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195786,7 +195120,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195858,7 +195191,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -195981,7 +195313,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196617,7 +195948,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196689,7 +196019,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196821,7 +196150,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196837,7 +196165,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196909,7 +196236,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -196925,7 +196251,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197048,7 +196373,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197180,7 +196504,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197196,7 +196519,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197212,7 +196534,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197228,7 +196549,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197300,7 +196620,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197381,7 +196700,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -197687,10 +197005,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -198052,10 +197367,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -199967,10 +199279,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -200164,10 +199473,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -200434,10 +199740,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -200850,10 +200153,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -201346,10 +200646,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -201658,10 +200955,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -202380,7 +201674,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -202461,7 +201754,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -202937,7 +202229,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -202953,7 +202244,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -202969,7 +202259,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -203050,7 +202339,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203066,7 +202354,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -203280,7 +202567,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203296,7 +202582,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203312,7 +202597,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203328,7 +202612,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -203344,7 +202627,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203425,7 +202707,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203575,7 +202856,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203720,7 +203000,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -203861,7 +203140,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204011,7 +203289,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204027,7 +203304,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204043,7 +203319,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -204124,7 +203399,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204140,7 +203414,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -204290,7 +203563,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204306,7 +203578,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204322,7 +203593,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204338,7 +203608,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -204354,7 +203623,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204435,7 +203703,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204585,7 +203852,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204666,7 +203932,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -204807,7 +204072,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206873,7 +206137,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206889,7 +206152,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206905,7 +206167,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206921,7 +206182,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206937,7 +206197,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -206953,7 +206212,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -206969,7 +206227,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208094,7 +207351,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208166,7 +207422,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208289,7 +207544,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208480,7 +207734,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208496,7 +207749,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -208577,7 +207829,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -208727,7 +207978,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -208743,7 +207993,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -208824,7 +208073,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -210116,7 +209364,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -211487,7 +210734,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -213553,7 +212799,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -213634,7 +212879,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -213980,7 +213224,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -213996,7 +213239,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -214012,7 +213254,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 1 - @@ -214093,7 +213334,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -214243,7 +213483,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -214259,7 +213498,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -214340,7 +213578,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -214356,7 +213593,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -216393,7 +215629,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= 0 - @@ -217132,7 +216367,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -222515,7 +221749,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -222776,7 +222009,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -223173,7 +222405,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -223725,7 +222956,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -223741,7 +222971,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -223757,7 +222986,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -223773,7 +223001,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -225508,10 +224735,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= - - - - + @@ -251665,7 +250889,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -251746,7 +250969,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - @@ -251887,7 +251109,6 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= -1 - diff --git a/Core/Schema/Opc.Ua.NodeSet2.xml b/Core/Schema/Opc.Ua.NodeSet2.xml index 615a0bc9..ca263e4e 100644 --- a/Core/Schema/Opc.Ua.NodeSet2.xml +++ b/Core/Schema/Opc.Ua.NodeSet2.xml @@ -1,7 +1,7 @@  - + i=1 @@ -41,330 +41,393 @@ i=39 + Default Binary i=58 + Default XML i=58 + BaseDataType + Number i=24 + Integer i=26 + UInteger i=26 + Enumeration i=24 + Boolean i=24 + SByte i=27 + Byte i=28 + Int16 i=27 + UInt16 i=28 + Int32 i=27 + UInt32 i=28 + Int64 i=27 + UInt64 i=28 + Float i=26 + Double i=26 + String i=24 + DateTime i=24 + Guid i=24 + ByteString i=24 + XmlElement i=24 + NodeId i=24 + ExpandedNodeId i=24 + StatusCode i=24 + QualifiedName i=24 + LocalizedText i=24 + Structure i=24 + DataValue i=24 + DiagnosticInfo i=24 + Image i=15 + Decimal i=26 + References + NonHierarchicalReferences i=31 + HierarchicalReferences i=31 HierarchicalReferences + HasChild i=33 ChildOf + Organizes i=33 OrganizedBy + HasEventSource i=33 EventSourceOf + HasModellingRule i=32 ModellingRuleOf + HasEncoding i=32 EncodingOf + HasDescription i=32 DescriptionOf + HasTypeDefinition i=32 TypeDefinitionOf + GeneratesEvent i=32 GeneratedBy + AlwaysGeneratesEvent i=41 AlwaysGeneratedBy + Aggregates i=34 AggregatedBy + HasSubtype i=34 SubtypeOf + HasProperty i=44 PropertyOf + HasComponent i=44 ComponentOf + HasNotifier i=36 NotifierOf + HasOrderedComponent i=47 OrderedComponentOf + FromState i=32 ToTransition + ToState i=32 FromTransition + HasCause i=32 MayBeCausedBy + HasEffect i=32 MayBeEffectedBy + HasSubStateMachine i=32 SubStateMachineOf + HasHistoricalConfiguration i=44 HistoricalConfigurationOf + BaseObjectType + FolderType i=58 + BaseVariableType + BaseDataVariableType i=62 + PropertyType i=62 + DataTypeDescriptionType i=104 i=105 @@ -372,6 +435,7 @@ + DataTypeVersion i=68 i=80 @@ -379,6 +443,7 @@ + DictionaryFragment i=68 i=80 @@ -386,6 +451,7 @@ + DataTypeDictionaryType i=106 i=107 @@ -394,6 +460,7 @@ + DataTypeVersion i=68 i=80 @@ -401,6 +468,7 @@ + NamespaceUri i=68 i=80 @@ -408,6 +476,7 @@ + Deprecated i=68 i=80 @@ -415,21 +484,24 @@ + DataTypeSystemType i=58 + DataTypeEncodingType i=58 + NamingRuleType i=12169 i=29 - + The BrowseName must appear in all instances of the type. @@ -442,6 +514,7 @@ + EnumValues i=68 i=78 @@ -513,12 +586,14 @@ + ModellingRuleType i=111 i=58 + NamingRule i=68 i=78 @@ -529,12 +604,14 @@ + Mandatory i=112 i=77 + NamingRule i=68 i=78 @@ -544,12 +621,14 @@ + Optional i=113 i=77 + NamingRule i=68 i=80 @@ -559,12 +638,14 @@ + ExposesItsArray i=114 i=77 + NamingRule i=68 i=83 @@ -574,12 +655,14 @@ + MandatoryShared i=116 i=77 + NamingRule i=68 i=79 @@ -589,12 +672,14 @@ + OptionalPlaceholder i=11509 i=77 + NamingRule i=68 i=11508 @@ -604,12 +689,14 @@ + MandatoryPlaceholder i=11511 i=77 + NamingRule i=68 i=11510 @@ -619,29 +706,34 @@ + Root i=61 + Objects i=84 i=61 + Types i=84 i=61 + Views i=84 i=61 + ObjectTypes i=86 i=58 @@ -649,6 +741,7 @@ + VariableTypes i=86 i=62 @@ -656,6 +749,7 @@ + DataTypes i=86 i=24 @@ -663,6 +757,7 @@ + ReferenceTypes i=86 i=31 @@ -670,30 +765,35 @@ + XML Schema i=90 i=75 + OPC Binary i=90 i=75 + HasArgumentDescription i=47 ArgumentDescriptionOf + HasOptionalInputArgumentDescription i=129 OptionalInputArgumentDescriptionOf + http://opcfoundation.org/UA/ i=15958 i=15959 @@ -710,6 +810,7 @@ + NamespaceUri i=68 i=15957 @@ -719,6 +820,7 @@ + NamespaceVersion i=68 i=15957 @@ -728,6 +830,7 @@ + NamespacePublicationDate i=68 i=15957 @@ -737,6 +840,7 @@ + IsNamespaceSubset i=68 i=15957 @@ -746,6 +850,7 @@ + StaticNodeIdTypes i=68 i=15957 @@ -757,6 +862,7 @@ + StaticNumericNodeIdRange i=68 i=15957 @@ -768,6 +874,7 @@ + StaticStringNodeIdPattern i=68 i=15957 @@ -778,139 +885,166 @@ + DefaultRolePermissions i=68 i=15957 + DefaultUserRolePermissions i=68 i=15957 + DefaultAccessRestrictions i=68 i=15957 + NodeVersion i=68 + ViewVersion i=68 + Icon i=68 + LocalTime i=68 + AllowNulls i=68 + ValueAsText i=68 + MaxStringLength i=68 + MaxCharacters i=68 + MaxByteStringLength i=68 + MaxArrayLength i=68 + EngineeringUnits i=68 + EnumStrings i=68 + EnumValues i=68 + OptionSetValues i=68 + InputArguments i=68 + OutputArguments i=68 + DefaultInputValues i=68 + DefaultInstanceBrowseName i=68 + ImageBMP i=30 + ImageGIF i=30 + ImageJPG i=30 + ImagePNG i=30 + AudioDataType i=15 + ServerType i=2005 i=2006 @@ -933,6 +1067,7 @@ + ServerArray i=68 i=78 @@ -940,6 +1075,7 @@ + NamespaceArray i=68 i=78 @@ -947,6 +1083,7 @@ + UrisVersion i=68 i=80 @@ -954,6 +1091,7 @@ + ServerStatus i=3074 i=3075 @@ -967,6 +1105,7 @@ + StartTime i=63 i=78 @@ -974,6 +1113,7 @@ + CurrentTime i=63 i=78 @@ -981,6 +1121,7 @@ + State i=63 i=78 @@ -988,6 +1129,7 @@ + BuildInfo i=3078 i=3079 @@ -1001,6 +1143,7 @@ + ProductUri i=63 i=78 @@ -1008,6 +1151,7 @@ + ManufacturerName i=63 i=78 @@ -1015,6 +1159,7 @@ + ProductName i=63 i=78 @@ -1022,6 +1167,7 @@ + SoftwareVersion i=63 i=78 @@ -1029,6 +1175,7 @@ + BuildNumber i=63 i=78 @@ -1036,6 +1183,7 @@ + BuildDate i=63 i=78 @@ -1043,6 +1191,7 @@ + SecondsTillShutdown i=63 i=78 @@ -1050,6 +1199,7 @@ + ShutdownReason i=63 i=78 @@ -1057,6 +1207,7 @@ + ServiceLevel i=68 i=78 @@ -1064,6 +1215,7 @@ + Auditing i=68 i=78 @@ -1071,6 +1223,7 @@ + EstimatedReturnTime i=68 i=80 @@ -1078,6 +1231,7 @@ + LocalTime i=68 i=80 @@ -1085,6 +1239,7 @@ + ServerCapabilities i=3086 i=3087 @@ -1101,6 +1256,7 @@ + ServerProfileArray i=68 i=78 @@ -1108,6 +1264,7 @@ + LocaleIdArray i=68 i=78 @@ -1115,6 +1272,7 @@ + MinSupportedSampleRate i=68 i=78 @@ -1122,6 +1280,7 @@ + MaxBrowseContinuationPoints i=68 i=78 @@ -1129,6 +1288,7 @@ + MaxQueryContinuationPoints i=68 i=78 @@ -1136,6 +1296,7 @@ + MaxHistoryContinuationPoints i=68 i=78 @@ -1143,6 +1304,7 @@ + SoftwareCertificates i=68 i=78 @@ -1150,6 +1312,7 @@ + ModellingRules i=61 i=78 @@ -1157,6 +1320,7 @@ + AggregateFunctions i=61 i=78 @@ -1164,6 +1328,7 @@ + ServerDiagnostics i=3095 i=3110 @@ -1175,6 +1340,7 @@ + ServerDiagnosticsSummary i=3096 i=3097 @@ -1194,6 +1360,7 @@ + ServerViewCount i=63 i=78 @@ -1201,6 +1368,7 @@ + CurrentSessionCount i=63 i=78 @@ -1208,6 +1376,7 @@ + CumulatedSessionCount i=63 i=78 @@ -1215,6 +1384,7 @@ + SecurityRejectedSessionCount i=63 i=78 @@ -1222,6 +1392,7 @@ + RejectedSessionCount i=63 i=78 @@ -1229,6 +1400,7 @@ + SessionTimeoutCount i=63 i=78 @@ -1236,6 +1408,7 @@ + SessionAbortCount i=63 i=78 @@ -1243,6 +1416,7 @@ + PublishingIntervalCount i=63 i=78 @@ -1250,6 +1424,7 @@ + CurrentSubscriptionCount i=63 i=78 @@ -1257,6 +1432,7 @@ + CumulatedSubscriptionCount i=63 i=78 @@ -1264,6 +1440,7 @@ + SecurityRejectedRequestsCount i=63 i=78 @@ -1271,6 +1448,7 @@ + RejectedRequestsCount i=63 i=78 @@ -1278,6 +1456,7 @@ + SubscriptionDiagnosticsArray i=2171 i=78 @@ -1285,6 +1464,7 @@ + SessionsDiagnosticsSummary i=3112 i=3113 @@ -1294,6 +1474,7 @@ + SessionDiagnosticsArray i=2196 i=78 @@ -1301,6 +1482,7 @@ + SessionSecurityDiagnosticsArray i=2243 i=78 @@ -1308,6 +1490,7 @@ + EnabledFlag i=68 i=78 @@ -1315,6 +1498,7 @@ + VendorServerInfo i=2033 i=78 @@ -1322,6 +1506,7 @@ + ServerRedundancy i=3115 i=2034 @@ -1330,6 +1515,7 @@ + RedundancySupport i=68 i=78 @@ -1337,6 +1523,7 @@ + Namespaces i=11645 i=80 @@ -1344,6 +1531,7 @@ + GetMonitoredItems i=11490 i=11491 @@ -1352,6 +1540,7 @@ + InputArguments i=68 i=78 @@ -1371,7 +1560,6 @@ -1 - @@ -1379,6 +1567,7 @@ + OutputArguments i=68 i=78 @@ -1398,7 +1587,6 @@ 1 - @@ -1414,7 +1602,6 @@ 1 - @@ -1422,6 +1609,7 @@ + ResendData i=12872 i=80 @@ -1429,6 +1617,7 @@ + InputArguments i=68 i=78 @@ -1448,7 +1637,6 @@ -1 - @@ -1456,6 +1644,7 @@ + SetSubscriptionDurable i=12747 i=12748 @@ -1464,6 +1653,7 @@ + InputArguments i=68 i=78 @@ -1483,7 +1673,6 @@ -1 - @@ -1499,7 +1688,6 @@ -1 - @@ -1507,6 +1695,7 @@ + OutputArguments i=68 i=78 @@ -1526,7 +1715,6 @@ -1 - @@ -1534,6 +1722,7 @@ + RequestServerStateChange i=12884 i=80 @@ -1541,6 +1730,7 @@ + InputArguments i=68 i=78 @@ -1560,7 +1750,6 @@ -1 - @@ -1576,7 +1765,6 @@ -1 - @@ -1592,7 +1780,6 @@ -1 - @@ -1608,7 +1795,6 @@ -1 - @@ -1624,7 +1810,6 @@ -1 - @@ -1632,6 +1817,7 @@ + ServerCapabilitiesType i=2014 i=2016 @@ -1652,6 +1838,7 @@ + ServerProfileArray i=68 i=78 @@ -1659,6 +1846,7 @@ + LocaleIdArray i=68 i=78 @@ -1666,6 +1854,7 @@ + MinSupportedSampleRate i=68 i=78 @@ -1673,6 +1862,7 @@ + MaxBrowseContinuationPoints i=68 i=78 @@ -1680,6 +1870,7 @@ + MaxQueryContinuationPoints i=68 i=78 @@ -1687,6 +1878,7 @@ + MaxHistoryContinuationPoints i=68 i=78 @@ -1694,6 +1886,7 @@ + SoftwareCertificates i=68 i=78 @@ -1701,6 +1894,7 @@ + MaxArrayLength i=68 i=80 @@ -1708,6 +1902,7 @@ + MaxStringLength i=68 i=80 @@ -1715,6 +1910,7 @@ + MaxByteStringLength i=68 i=80 @@ -1722,6 +1918,7 @@ + OperationLimits i=11564 i=80 @@ -1729,6 +1926,7 @@ + ModellingRules i=61 i=78 @@ -1736,6 +1934,7 @@ + AggregateFunctions i=61 i=78 @@ -1743,6 +1942,7 @@ + <VendorCapability> i=2137 i=11508 @@ -1750,6 +1950,7 @@ + RoleSet i=16296 i=16299 @@ -1759,6 +1960,7 @@ + AddRole i=16297 i=16298 @@ -1767,6 +1969,7 @@ + InputArguments i=68 i=78 @@ -1786,7 +1989,6 @@ -1 - @@ -1802,7 +2004,6 @@ -1 - @@ -1810,6 +2011,7 @@ + OutputArguments i=68 i=78 @@ -1829,7 +2031,6 @@ -1 - @@ -1837,6 +2038,7 @@ + RemoveRole i=16300 i=78 @@ -1844,6 +2046,7 @@ + InputArguments i=68 i=78 @@ -1863,7 +2066,6 @@ -1 - @@ -1871,6 +2073,7 @@ + ServerDiagnosticsType i=2021 i=2022 @@ -1881,6 +2084,7 @@ + ServerDiagnosticsSummary i=3116 i=3117 @@ -1900,6 +2104,7 @@ + ServerViewCount i=63 i=78 @@ -1907,6 +2112,7 @@ + CurrentSessionCount i=63 i=78 @@ -1914,6 +2120,7 @@ + CumulatedSessionCount i=63 i=78 @@ -1921,6 +2128,7 @@ + SecurityRejectedSessionCount i=63 i=78 @@ -1928,6 +2136,7 @@ + RejectedSessionCount i=63 i=78 @@ -1935,6 +2144,7 @@ + SessionTimeoutCount i=63 i=78 @@ -1942,6 +2152,7 @@ + SessionAbortCount i=63 i=78 @@ -1949,6 +2160,7 @@ + PublishingIntervalCount i=63 i=78 @@ -1956,6 +2168,7 @@ + CurrentSubscriptionCount i=63 i=78 @@ -1963,6 +2176,7 @@ + CumulatedSubscriptionCount i=63 i=78 @@ -1970,6 +2184,7 @@ + SecurityRejectedRequestsCount i=63 i=78 @@ -1977,6 +2192,7 @@ + RejectedRequestsCount i=63 i=78 @@ -1984,6 +2200,7 @@ + SamplingIntervalDiagnosticsArray i=2164 i=80 @@ -1991,6 +2208,7 @@ + SubscriptionDiagnosticsArray i=2171 i=78 @@ -1998,6 +2216,7 @@ + SessionsDiagnosticsSummary i=3129 i=3130 @@ -2007,6 +2226,7 @@ + SessionDiagnosticsArray i=2196 i=78 @@ -2014,6 +2234,7 @@ + SessionSecurityDiagnosticsArray i=2243 i=78 @@ -2021,6 +2242,7 @@ + EnabledFlag i=68 i=78 @@ -2028,6 +2250,7 @@ + SessionsDiagnosticsSummaryType i=2027 i=2028 @@ -2036,6 +2259,7 @@ + SessionDiagnosticsArray i=2196 i=78 @@ -2043,6 +2267,7 @@ + SessionSecurityDiagnosticsArray i=2243 i=78 @@ -2050,6 +2275,7 @@ + <ClientName> i=12098 i=12142 @@ -2060,6 +2286,7 @@ + SessionDiagnostics i=12099 i=12100 @@ -2110,6 +2337,7 @@ + SessionId i=63 i=78 @@ -2117,6 +2345,7 @@ + SessionName i=63 i=78 @@ -2124,6 +2353,7 @@ + ClientDescription i=63 i=78 @@ -2131,6 +2361,7 @@ + ServerUri i=63 i=78 @@ -2138,6 +2369,7 @@ + EndpointUrl i=63 i=78 @@ -2145,6 +2377,7 @@ + LocaleIds i=63 i=78 @@ -2152,6 +2385,7 @@ + ActualSessionTimeout i=63 i=78 @@ -2159,6 +2393,7 @@ + MaxResponseMessageSize i=63 i=78 @@ -2166,6 +2401,7 @@ + ClientConnectionTime i=63 i=78 @@ -2173,6 +2409,7 @@ + ClientLastContactTime i=63 i=78 @@ -2180,6 +2417,7 @@ + CurrentSubscriptionsCount i=63 i=78 @@ -2187,6 +2425,7 @@ + CurrentMonitoredItemsCount i=63 i=78 @@ -2194,6 +2433,7 @@ + CurrentPublishRequestsInQueue i=63 i=78 @@ -2201,6 +2441,7 @@ + TotalRequestCount i=63 i=78 @@ -2208,6 +2449,7 @@ + UnauthorizedRequestCount i=63 i=78 @@ -2215,6 +2457,7 @@ + ReadCount i=63 i=78 @@ -2222,6 +2465,7 @@ + HistoryReadCount i=63 i=78 @@ -2229,6 +2473,7 @@ + WriteCount i=63 i=78 @@ -2236,6 +2481,7 @@ + HistoryUpdateCount i=63 i=78 @@ -2243,6 +2489,7 @@ + CallCount i=63 i=78 @@ -2250,6 +2497,7 @@ + CreateMonitoredItemsCount i=63 i=78 @@ -2257,6 +2505,7 @@ + ModifyMonitoredItemsCount i=63 i=78 @@ -2264,6 +2513,7 @@ + SetMonitoringModeCount i=63 i=78 @@ -2271,6 +2521,7 @@ + SetTriggeringCount i=63 i=78 @@ -2278,6 +2529,7 @@ + DeleteMonitoredItemsCount i=63 i=78 @@ -2285,6 +2537,7 @@ + CreateSubscriptionCount i=63 i=78 @@ -2292,6 +2545,7 @@ + ModifySubscriptionCount i=63 i=78 @@ -2299,6 +2553,7 @@ + SetPublishingModeCount i=63 i=78 @@ -2306,6 +2561,7 @@ + PublishCount i=63 i=78 @@ -2313,6 +2569,7 @@ + RepublishCount i=63 i=78 @@ -2320,6 +2577,7 @@ + TransferSubscriptionsCount i=63 i=78 @@ -2327,6 +2585,7 @@ + DeleteSubscriptionsCount i=63 i=78 @@ -2334,6 +2593,7 @@ + AddNodesCount i=63 i=78 @@ -2341,6 +2601,7 @@ + AddReferencesCount i=63 i=78 @@ -2348,6 +2609,7 @@ + DeleteNodesCount i=63 i=78 @@ -2355,6 +2617,7 @@ + DeleteReferencesCount i=63 i=78 @@ -2362,6 +2625,7 @@ + BrowseCount i=63 i=78 @@ -2369,6 +2633,7 @@ + BrowseNextCount i=63 i=78 @@ -2376,6 +2641,7 @@ + TranslateBrowsePathsToNodeIdsCount i=63 i=78 @@ -2383,6 +2649,7 @@ + QueryFirstCount i=63 i=78 @@ -2390,6 +2657,7 @@ + QueryNextCount i=63 i=78 @@ -2397,6 +2665,7 @@ + RegisterNodesCount i=63 i=78 @@ -2404,6 +2673,7 @@ + UnregisterNodesCount i=63 i=78 @@ -2411,6 +2681,7 @@ + SessionSecurityDiagnostics i=12143 i=12144 @@ -2427,6 +2698,7 @@ + SessionId i=63 i=78 @@ -2434,6 +2706,7 @@ + ClientUserIdOfSession i=63 i=78 @@ -2441,6 +2714,7 @@ + ClientUserIdHistory i=63 i=78 @@ -2448,6 +2722,7 @@ + AuthenticationMechanism i=63 i=78 @@ -2455,6 +2730,7 @@ + Encoding i=63 i=78 @@ -2462,6 +2738,7 @@ + TransportProtocol i=63 i=78 @@ -2469,6 +2746,7 @@ + SecurityMode i=63 i=78 @@ -2476,6 +2754,7 @@ + SecurityPolicyUri i=63 i=78 @@ -2483,6 +2762,7 @@ + ClientCertificate i=63 i=78 @@ -2490,6 +2770,7 @@ + SubscriptionDiagnosticsArray i=2171 i=78 @@ -2497,6 +2778,7 @@ + SessionDiagnosticsObjectType i=2030 i=2031 @@ -2505,6 +2787,7 @@ + SessionDiagnostics i=3131 i=3132 @@ -2555,6 +2838,7 @@ + SessionId i=63 i=78 @@ -2562,6 +2846,7 @@ + SessionName i=63 i=78 @@ -2569,6 +2854,7 @@ + ClientDescription i=63 i=78 @@ -2576,6 +2862,7 @@ + ServerUri i=63 i=78 @@ -2583,6 +2870,7 @@ + EndpointUrl i=63 i=78 @@ -2590,6 +2878,7 @@ + LocaleIds i=63 i=78 @@ -2597,6 +2886,7 @@ + ActualSessionTimeout i=63 i=78 @@ -2604,6 +2894,7 @@ + MaxResponseMessageSize i=63 i=78 @@ -2611,6 +2902,7 @@ + ClientConnectionTime i=63 i=78 @@ -2618,6 +2910,7 @@ + ClientLastContactTime i=63 i=78 @@ -2625,6 +2918,7 @@ + CurrentSubscriptionsCount i=63 i=78 @@ -2632,6 +2926,7 @@ + CurrentMonitoredItemsCount i=63 i=78 @@ -2639,6 +2934,7 @@ + CurrentPublishRequestsInQueue i=63 i=78 @@ -2646,6 +2942,7 @@ + TotalRequestCount i=63 i=78 @@ -2653,6 +2950,7 @@ + UnauthorizedRequestCount i=63 i=78 @@ -2660,6 +2958,7 @@ + ReadCount i=63 i=78 @@ -2667,6 +2966,7 @@ + HistoryReadCount i=63 i=78 @@ -2674,6 +2974,7 @@ + WriteCount i=63 i=78 @@ -2681,6 +2982,7 @@ + HistoryUpdateCount i=63 i=78 @@ -2688,6 +2990,7 @@ + CallCount i=63 i=78 @@ -2695,6 +2998,7 @@ + CreateMonitoredItemsCount i=63 i=78 @@ -2702,6 +3006,7 @@ + ModifyMonitoredItemsCount i=63 i=78 @@ -2709,6 +3014,7 @@ + SetMonitoringModeCount i=63 i=78 @@ -2716,6 +3022,7 @@ + SetTriggeringCount i=63 i=78 @@ -2723,6 +3030,7 @@ + DeleteMonitoredItemsCount i=63 i=78 @@ -2730,6 +3038,7 @@ + CreateSubscriptionCount i=63 i=78 @@ -2737,6 +3046,7 @@ + ModifySubscriptionCount i=63 i=78 @@ -2744,6 +3054,7 @@ + SetPublishingModeCount i=63 i=78 @@ -2751,6 +3062,7 @@ + PublishCount i=63 i=78 @@ -2758,6 +3070,7 @@ + RepublishCount i=63 i=78 @@ -2765,6 +3078,7 @@ + TransferSubscriptionsCount i=63 i=78 @@ -2772,6 +3086,7 @@ + DeleteSubscriptionsCount i=63 i=78 @@ -2779,6 +3094,7 @@ + AddNodesCount i=63 i=78 @@ -2786,6 +3102,7 @@ + AddReferencesCount i=63 i=78 @@ -2793,6 +3110,7 @@ + DeleteNodesCount i=63 i=78 @@ -2800,6 +3118,7 @@ + DeleteReferencesCount i=63 i=78 @@ -2807,6 +3126,7 @@ + BrowseCount i=63 i=78 @@ -2814,6 +3134,7 @@ + BrowseNextCount i=63 i=78 @@ -2821,6 +3142,7 @@ + TranslateBrowsePathsToNodeIdsCount i=63 i=78 @@ -2828,6 +3150,7 @@ + QueryFirstCount i=63 i=78 @@ -2835,6 +3158,7 @@ + QueryNextCount i=63 i=78 @@ -2842,6 +3166,7 @@ + RegisterNodesCount i=63 i=78 @@ -2849,6 +3174,7 @@ + UnregisterNodesCount i=63 i=78 @@ -2856,6 +3182,7 @@ + SessionSecurityDiagnostics i=3179 i=3180 @@ -2872,6 +3199,7 @@ + SessionId i=63 i=78 @@ -2879,6 +3207,7 @@ + ClientUserIdOfSession i=63 i=78 @@ -2886,6 +3215,7 @@ + ClientUserIdHistory i=63 i=78 @@ -2893,6 +3223,7 @@ + AuthenticationMechanism i=63 i=78 @@ -2900,6 +3231,7 @@ + Encoding i=63 i=78 @@ -2907,6 +3239,7 @@ + TransportProtocol i=63 i=78 @@ -2914,6 +3247,7 @@ + SecurityMode i=63 i=78 @@ -2921,6 +3255,7 @@ + SecurityPolicyUri i=63 i=78 @@ -2928,6 +3263,7 @@ + ClientCertificate i=63 i=78 @@ -2935,6 +3271,7 @@ + SubscriptionDiagnosticsArray i=2171 i=78 @@ -2942,17 +3279,20 @@ + VendorServerInfoType i=58 + ServerRedundancyType i=2035 i=58 + RedundancySupport i=68 i=78 @@ -2960,6 +3300,7 @@ + TransparentRedundancyType i=2037 i=2038 @@ -2967,6 +3308,7 @@ + CurrentServerId i=68 i=78 @@ -2974,6 +3316,7 @@ + RedundantServerArray i=68 i=78 @@ -2981,12 +3324,14 @@ + NonTransparentRedundancyType i=2040 i=2034 + ServerUriArray i=68 i=78 @@ -2994,12 +3339,14 @@ + NonTransparentNetworkRedundancyType i=11948 i=2039 + ServerNetworkGroups i=68 i=78 @@ -3007,6 +3354,7 @@ + OperationLimitsType i=11565 i=12161 @@ -3024,6 +3372,7 @@ + MaxNodesPerRead i=68 i=80 @@ -3031,6 +3380,7 @@ + MaxNodesPerHistoryReadData i=68 i=80 @@ -3038,6 +3388,7 @@ + MaxNodesPerHistoryReadEvents i=68 i=80 @@ -3045,6 +3396,7 @@ + MaxNodesPerWrite i=68 i=80 @@ -3052,6 +3404,7 @@ + MaxNodesPerHistoryUpdateData i=68 i=80 @@ -3059,6 +3412,7 @@ + MaxNodesPerHistoryUpdateEvents i=68 i=80 @@ -3066,6 +3420,7 @@ + MaxNodesPerMethodCall i=68 i=80 @@ -3073,6 +3428,7 @@ + MaxNodesPerBrowse i=68 i=80 @@ -3080,6 +3436,7 @@ + MaxNodesPerRegisterNodes i=68 i=80 @@ -3087,6 +3444,7 @@ + MaxNodesPerTranslateBrowsePathsToNodeIds i=68 i=80 @@ -3094,6 +3452,7 @@ + MaxNodesPerNodeManagement i=68 i=80 @@ -3101,6 +3460,7 @@ + MaxMonitoredItemsPerCall i=68 i=80 @@ -3108,6 +3468,7 @@ + FileType i=11576 i=12686 @@ -3124,6 +3485,7 @@ + Size i=68 i=78 @@ -3131,6 +3493,7 @@ + Writable i=68 i=78 @@ -3138,6 +3501,7 @@ + UserWritable i=68 i=78 @@ -3145,6 +3509,7 @@ + OpenCount i=68 i=78 @@ -3152,6 +3517,7 @@ + MimeType i=68 i=80 @@ -3159,6 +3525,7 @@ + Open i=11581 i=11582 @@ -3167,6 +3534,7 @@ + InputArguments i=68 i=78 @@ -3186,7 +3554,6 @@ -1 - @@ -3194,6 +3561,7 @@ + OutputArguments i=68 i=78 @@ -3213,7 +3581,6 @@ -1 - @@ -3221,6 +3588,7 @@ + Close i=11584 i=78 @@ -3228,6 +3596,7 @@ + InputArguments i=68 i=78 @@ -3247,7 +3616,6 @@ -1 - @@ -3255,6 +3623,7 @@ + Read i=11586 i=11587 @@ -3263,6 +3632,7 @@ + InputArguments i=68 i=78 @@ -3282,7 +3652,6 @@ -1 - @@ -3298,7 +3667,6 @@ -1 - @@ -3306,6 +3674,7 @@ + OutputArguments i=68 i=78 @@ -3325,7 +3694,6 @@ -1 - @@ -3333,6 +3701,7 @@ + Write i=11589 i=78 @@ -3340,6 +3709,7 @@ + InputArguments i=68 i=78 @@ -3359,7 +3729,6 @@ -1 - @@ -3375,7 +3744,6 @@ -1 - @@ -3383,6 +3751,7 @@ + GetPosition i=11591 i=11592 @@ -3391,6 +3760,7 @@ + InputArguments i=68 i=78 @@ -3410,7 +3780,6 @@ -1 - @@ -3418,6 +3787,7 @@ + OutputArguments i=68 i=78 @@ -3437,7 +3807,6 @@ -1 - @@ -3445,6 +3814,7 @@ + SetPosition i=11594 i=78 @@ -3452,6 +3822,7 @@ + InputArguments i=68 i=78 @@ -3471,7 +3842,6 @@ -1 - @@ -3487,7 +3857,6 @@ -1 - @@ -3495,18 +3864,21 @@ + AddressSpaceFileType i=11615 i=11575 + ExportNamespace i=80 i=11595 + NamespaceMetadataType i=11617 i=11618 @@ -3523,6 +3895,7 @@ + NamespaceUri i=68 i=78 @@ -3530,6 +3903,7 @@ + NamespaceVersion i=68 i=78 @@ -3537,6 +3911,7 @@ + NamespacePublicationDate i=68 i=78 @@ -3544,6 +3919,7 @@ + IsNamespaceSubset i=68 i=78 @@ -3551,6 +3927,7 @@ + StaticNodeIdTypes i=68 i=78 @@ -3558,6 +3935,7 @@ + StaticNumericNodeIdRange i=68 i=78 @@ -3565,6 +3943,7 @@ + StaticStringNodeIdPattern i=68 i=78 @@ -3572,6 +3951,7 @@ + NamespaceFile i=11625 i=12690 @@ -3589,6 +3969,7 @@ + Size i=68 i=78 @@ -3596,6 +3977,7 @@ + Writable i=68 i=78 @@ -3603,6 +3985,7 @@ + UserWritable i=68 i=78 @@ -3610,6 +3993,7 @@ + OpenCount i=68 i=78 @@ -3617,6 +4001,7 @@ + Open i=11630 i=11631 @@ -3625,6 +4010,7 @@ + InputArguments i=68 i=78 @@ -3644,7 +4030,6 @@ -1 - @@ -3652,6 +4037,7 @@ + OutputArguments i=68 i=78 @@ -3671,7 +4057,6 @@ -1 - @@ -3679,6 +4064,7 @@ + Close i=11633 i=78 @@ -3686,6 +4072,7 @@ + InputArguments i=68 i=78 @@ -3705,7 +4092,6 @@ -1 - @@ -3713,6 +4099,7 @@ + Read i=11635 i=11636 @@ -3721,6 +4108,7 @@ + InputArguments i=68 i=78 @@ -3740,7 +4128,6 @@ -1 - @@ -3756,7 +4143,6 @@ -1 - @@ -3764,6 +4150,7 @@ + OutputArguments i=68 i=78 @@ -3783,7 +4170,6 @@ -1 - @@ -3791,6 +4177,7 @@ + Write i=11638 i=78 @@ -3798,6 +4185,7 @@ + InputArguments i=68 i=78 @@ -3817,7 +4205,6 @@ -1 - @@ -3833,7 +4220,6 @@ -1 - @@ -3841,6 +4227,7 @@ + GetPosition i=11640 i=11641 @@ -3849,6 +4236,7 @@ + InputArguments i=68 i=78 @@ -3868,7 +4256,6 @@ -1 - @@ -3876,6 +4263,7 @@ + OutputArguments i=68 i=78 @@ -3895,7 +4283,6 @@ -1 - @@ -3903,6 +4290,7 @@ + SetPosition i=11643 i=78 @@ -3910,6 +4298,7 @@ + InputArguments i=68 i=78 @@ -3929,7 +4318,6 @@ -1 - @@ -3945,7 +4333,6 @@ -1 - @@ -3953,6 +4340,7 @@ + DefaultRolePermissions i=68 i=80 @@ -3960,6 +4348,7 @@ + DefaultUserRolePermissions i=68 i=80 @@ -3967,6 +4356,7 @@ + DefaultAccessRestrictions i=68 i=80 @@ -3974,12 +4364,14 @@ + NamespacesType i=11646 i=58 + <NamespaceIdentifier> i=11647 i=11648 @@ -3994,6 +4386,7 @@ + NamespaceUri i=68 i=78 @@ -4001,6 +4394,7 @@ + NamespaceVersion i=68 i=78 @@ -4008,6 +4402,7 @@ + NamespacePublicationDate i=68 i=78 @@ -4015,6 +4410,7 @@ + IsNamespaceSubset i=68 i=78 @@ -4022,6 +4418,7 @@ + StaticNodeIdTypes i=68 i=78 @@ -4029,6 +4426,7 @@ + StaticNumericNodeIdRange i=68 i=78 @@ -4036,6 +4434,7 @@ + StaticStringNodeIdPattern i=68 i=78 @@ -4043,6 +4442,7 @@ + BaseEventType i=2042 i=2043 @@ -4057,6 +4457,7 @@ + EventId i=68 i=78 @@ -4064,6 +4465,7 @@ + EventType i=68 i=78 @@ -4071,6 +4473,7 @@ + SourceNode i=68 i=78 @@ -4078,6 +4481,7 @@ + SourceName i=68 i=78 @@ -4085,6 +4489,7 @@ + Time i=68 i=78 @@ -4092,6 +4497,7 @@ + ReceiveTime i=68 i=78 @@ -4099,6 +4505,7 @@ + LocalTime i=68 i=80 @@ -4106,6 +4513,7 @@ + Message i=68 i=78 @@ -4113,6 +4521,7 @@ + Severity i=68 i=78 @@ -4120,6 +4529,7 @@ + AuditEventType i=2053 i=2054 @@ -4130,6 +4540,7 @@ + ActionTimeStamp i=68 i=78 @@ -4137,6 +4548,7 @@ + Status i=68 i=78 @@ -4144,6 +4556,7 @@ + ServerId i=68 i=78 @@ -4151,6 +4564,7 @@ + ClientAuditEntryId i=68 i=78 @@ -4158,6 +4572,7 @@ + ClientUserId i=68 i=78 @@ -4165,12 +4580,14 @@ + AuditSecurityEventType i=17615 i=2052 + StatusCodeId i=68 i=80 @@ -4178,12 +4595,14 @@ + AuditChannelEventType i=2745 i=2058 + SecureChannelId i=68 i=78 @@ -4191,6 +4610,7 @@ + AuditOpenSecureChannelEventType i=2061 i=2746 @@ -4202,6 +4622,7 @@ + ClientCertificate i=68 i=78 @@ -4209,6 +4630,7 @@ + ClientCertificateThumbprint i=68 i=78 @@ -4216,6 +4638,7 @@ + RequestType i=68 i=78 @@ -4223,6 +4646,7 @@ + SecurityPolicyUri i=68 i=78 @@ -4230,6 +4654,7 @@ + SecurityMode i=68 i=78 @@ -4237,6 +4662,7 @@ + RequestedLifetime i=68 i=78 @@ -4244,12 +4670,14 @@ + AuditSessionEventType i=2070 i=2058 + SessionId i=68 i=78 @@ -4257,6 +4685,7 @@ + AuditCreateSessionEventType i=2072 i=2073 @@ -4266,6 +4695,7 @@ + SecureChannelId i=68 i=78 @@ -4273,6 +4703,7 @@ + ClientCertificate i=68 i=78 @@ -4280,6 +4711,7 @@ + ClientCertificateThumbprint i=68 i=78 @@ -4287,6 +4719,7 @@ + RevisedSessionTimeout i=68 i=78 @@ -4294,12 +4727,14 @@ + AuditUrlMismatchEventType i=2749 i=2071 + EndpointUrl i=68 i=78 @@ -4307,6 +4742,7 @@ + AuditActivateSessionEventType i=2076 i=2077 @@ -4315,6 +4751,7 @@ + ClientSoftwareCertificates i=68 i=78 @@ -4322,6 +4759,7 @@ + UserIdentityToken i=68 i=78 @@ -4329,6 +4767,7 @@ + SecureChannelId i=68 i=78 @@ -4336,12 +4775,14 @@ + AuditCancelEventType i=2079 i=2069 + RequestHandle i=68 i=78 @@ -4349,12 +4790,14 @@ + AuditCertificateEventType i=2081 i=2058 + Certificate i=68 i=78 @@ -4362,6 +4805,7 @@ + AuditCertificateDataMismatchEventType i=2083 i=2084 @@ -4369,6 +4813,7 @@ + InvalidHostname i=68 i=78 @@ -4376,6 +4821,7 @@ + InvalidUri i=68 i=78 @@ -4383,42 +4829,50 @@ + AuditCertificateExpiredEventType i=2080 + AuditCertificateInvalidEventType i=2080 + AuditCertificateUntrustedEventType i=2080 + AuditCertificateRevokedEventType i=2080 + AuditCertificateMismatchEventType i=2080 + AuditNodeManagementEventType i=2052 + AuditAddNodesEventType i=2092 i=2090 + NodesToAdd i=68 i=78 @@ -4426,12 +4880,14 @@ + AuditDeleteNodesEventType i=2094 i=2090 + NodesToDelete i=68 i=78 @@ -4439,12 +4895,14 @@ + AuditAddReferencesEventType i=2096 i=2090 + ReferencesToAdd i=68 i=78 @@ -4452,12 +4910,14 @@ + AuditDeleteReferencesEventType i=2098 i=2090 + ReferencesToDelete i=68 i=78 @@ -4465,11 +4925,13 @@ + AuditUpdateEventType i=2052 + AuditWriteUpdateEventType i=2750 i=2101 @@ -4479,6 +4941,7 @@ + AttributeId i=68 i=78 @@ -4486,6 +4949,7 @@ + IndexRange i=68 i=78 @@ -4493,6 +4957,7 @@ + OldValue i=68 i=78 @@ -4500,6 +4965,7 @@ + NewValue i=68 i=78 @@ -4507,12 +4973,14 @@ + AuditHistoryUpdateEventType i=2751 i=2099 + ParameterDataTypeId i=68 i=78 @@ -4520,6 +4988,7 @@ + AuditUpdateMethodEventType i=2128 i=2129 @@ -4527,6 +4996,7 @@ + MethodId i=68 i=78 @@ -4534,6 +5004,7 @@ + InputArguments i=68 i=78 @@ -4541,22 +5012,26 @@ + SystemEventType i=2041 + DeviceFailureEventType i=2130 + SystemStatusChangeEventType i=11696 i=2130 + SystemState i=68 i=78 @@ -4564,17 +5039,20 @@ + BaseModelChangeEventType i=2041 + GeneralModelChangeEventType i=2134 i=2132 + Changes i=68 i=78 @@ -4582,12 +5060,14 @@ + SemanticChangeEventType i=2739 i=2041 + Changes i=68 i=78 @@ -4595,11 +5075,13 @@ + EventQueueOverflowEventType i=2041 + ProgressEventType i=12502 i=12503 @@ -4607,6 +5089,7 @@ + Context i=68 i=78 @@ -4614,6 +5097,7 @@ + Progress i=68 i=78 @@ -4621,16 +5105,19 @@ + AggregateFunctionType i=58 + ServerVendorCapabilityType i=63 + ServerStatusType i=2139 i=2140 @@ -4642,6 +5129,7 @@ + StartTime i=63 i=78 @@ -4649,6 +5137,7 @@ + CurrentTime i=63 i=78 @@ -4656,6 +5145,7 @@ + State i=63 i=78 @@ -4663,6 +5153,7 @@ + BuildInfo i=3698 i=3699 @@ -4676,6 +5167,7 @@ + ProductUri i=63 i=78 @@ -4683,6 +5175,7 @@ + ManufacturerName i=63 i=78 @@ -4690,6 +5183,7 @@ + ProductName i=63 i=78 @@ -4697,6 +5191,7 @@ + SoftwareVersion i=63 i=78 @@ -4704,6 +5199,7 @@ + BuildNumber i=63 i=78 @@ -4711,6 +5207,7 @@ + BuildDate i=63 i=78 @@ -4718,6 +5215,7 @@ + SecondsTillShutdown i=63 i=78 @@ -4725,6 +5223,7 @@ + ShutdownReason i=63 i=78 @@ -4732,6 +5231,7 @@ + BuildInfoType i=3052 i=3053 @@ -4743,6 +5243,7 @@ + ProductUri i=63 i=78 @@ -4750,6 +5251,7 @@ + ManufacturerName i=63 i=78 @@ -4757,6 +5259,7 @@ + ProductName i=63 i=78 @@ -4764,6 +5267,7 @@ + SoftwareVersion i=63 i=78 @@ -4771,6 +5275,7 @@ + BuildNumber i=63 i=78 @@ -4778,6 +5283,7 @@ + BuildDate i=63 i=78 @@ -4785,6 +5291,7 @@ + ServerDiagnosticsSummaryType i=2151 i=2152 @@ -4802,6 +5309,7 @@ + ServerViewCount i=63 i=78 @@ -4809,6 +5317,7 @@ + CurrentSessionCount i=63 i=78 @@ -4816,6 +5325,7 @@ + CumulatedSessionCount i=63 i=78 @@ -4823,6 +5333,7 @@ + SecurityRejectedSessionCount i=63 i=78 @@ -4830,6 +5341,7 @@ + RejectedSessionCount i=63 i=78 @@ -4837,6 +5349,7 @@ + SessionTimeoutCount i=63 i=78 @@ -4844,6 +5357,7 @@ + SessionAbortCount i=63 i=78 @@ -4851,6 +5365,7 @@ + PublishingIntervalCount i=63 i=78 @@ -4858,6 +5373,7 @@ + CurrentSubscriptionCount i=63 i=78 @@ -4865,6 +5381,7 @@ + CumulatedSubscriptionCount i=63 i=78 @@ -4872,6 +5389,7 @@ + SecurityRejectedRequestsCount i=63 i=78 @@ -4879,6 +5397,7 @@ + RejectedRequestsCount i=63 i=78 @@ -4886,12 +5405,14 @@ + SamplingIntervalDiagnosticsArrayType i=12779 i=63 + SamplingIntervalDiagnostics i=12780 i=12781 @@ -4903,6 +5424,7 @@ + SamplingInterval i=63 i=78 @@ -4910,6 +5432,7 @@ + SampledMonitoredItemsCount i=63 i=78 @@ -4917,6 +5440,7 @@ + MaxSampledMonitoredItemsCount i=63 i=78 @@ -4924,6 +5448,7 @@ + DisabledMonitoredItemsSamplingCount i=63 i=78 @@ -4931,6 +5456,7 @@ + SamplingIntervalDiagnosticsType i=2166 i=11697 @@ -4940,6 +5466,7 @@ + SamplingInterval i=63 i=78 @@ -4947,6 +5474,7 @@ + SampledMonitoredItemsCount i=63 i=78 @@ -4954,6 +5482,7 @@ + MaxSampledMonitoredItemsCount i=63 i=78 @@ -4961,6 +5490,7 @@ + DisabledMonitoredItemsSamplingCount i=63 i=78 @@ -4968,12 +5498,14 @@ + SubscriptionDiagnosticsArrayType i=12784 i=63 + SubscriptionDiagnostics i=12785 i=12786 @@ -5012,6 +5544,7 @@ + SessionId i=63 i=78 @@ -5019,6 +5552,7 @@ + SubscriptionId i=63 i=78 @@ -5026,6 +5560,7 @@ + Priority i=63 i=78 @@ -5033,6 +5568,7 @@ + PublishingInterval i=63 i=78 @@ -5040,6 +5576,7 @@ + MaxKeepAliveCount i=63 i=78 @@ -5047,6 +5584,7 @@ + MaxLifetimeCount i=63 i=78 @@ -5054,6 +5592,7 @@ + MaxNotificationsPerPublish i=63 i=78 @@ -5061,6 +5600,7 @@ + PublishingEnabled i=63 i=78 @@ -5068,6 +5608,7 @@ + ModifyCount i=63 i=78 @@ -5075,6 +5616,7 @@ + EnableCount i=63 i=78 @@ -5082,6 +5624,7 @@ + DisableCount i=63 i=78 @@ -5089,6 +5632,7 @@ + RepublishRequestCount i=63 i=78 @@ -5096,6 +5640,7 @@ + RepublishMessageRequestCount i=63 i=78 @@ -5103,6 +5648,7 @@ + RepublishMessageCount i=63 i=78 @@ -5110,6 +5656,7 @@ + TransferRequestCount i=63 i=78 @@ -5117,6 +5664,7 @@ + TransferredToAltClientCount i=63 i=78 @@ -5124,6 +5672,7 @@ + TransferredToSameClientCount i=63 i=78 @@ -5131,6 +5680,7 @@ + PublishRequestCount i=63 i=78 @@ -5138,6 +5688,7 @@ + DataChangeNotificationsCount i=63 i=78 @@ -5145,6 +5696,7 @@ + EventNotificationsCount i=63 i=78 @@ -5152,6 +5704,7 @@ + NotificationsCount i=63 i=78 @@ -5159,6 +5712,7 @@ + LatePublishRequestCount i=63 i=78 @@ -5166,6 +5720,7 @@ + CurrentKeepAliveCount i=63 i=78 @@ -5173,6 +5728,7 @@ + CurrentLifetimeCount i=63 i=78 @@ -5180,6 +5736,7 @@ + UnacknowledgedMessageCount i=63 i=78 @@ -5187,6 +5744,7 @@ + DiscardedMessageCount i=63 i=78 @@ -5194,6 +5752,7 @@ + MonitoredItemCount i=63 i=78 @@ -5201,6 +5760,7 @@ + DisabledMonitoredItemCount i=63 i=78 @@ -5208,6 +5768,7 @@ + MonitoringQueueOverflowCount i=63 i=78 @@ -5215,6 +5776,7 @@ + NextSequenceNumber i=63 i=78 @@ -5222,6 +5784,7 @@ + EventQueueOverflowCount i=63 i=78 @@ -5229,6 +5792,7 @@ + SubscriptionDiagnosticsType i=2173 i=2174 @@ -5265,6 +5829,7 @@ + SessionId i=63 i=78 @@ -5272,6 +5837,7 @@ + SubscriptionId i=63 i=78 @@ -5279,6 +5845,7 @@ + Priority i=63 i=78 @@ -5286,6 +5853,7 @@ + PublishingInterval i=63 i=78 @@ -5293,6 +5861,7 @@ + MaxKeepAliveCount i=63 i=78 @@ -5300,6 +5869,7 @@ + MaxLifetimeCount i=63 i=78 @@ -5307,6 +5877,7 @@ + MaxNotificationsPerPublish i=63 i=78 @@ -5314,6 +5885,7 @@ + PublishingEnabled i=63 i=78 @@ -5321,6 +5893,7 @@ + ModifyCount i=63 i=78 @@ -5328,6 +5901,7 @@ + EnableCount i=63 i=78 @@ -5335,6 +5909,7 @@ + DisableCount i=63 i=78 @@ -5342,6 +5917,7 @@ + RepublishRequestCount i=63 i=78 @@ -5349,6 +5925,7 @@ + RepublishMessageRequestCount i=63 i=78 @@ -5356,6 +5933,7 @@ + RepublishMessageCount i=63 i=78 @@ -5363,6 +5941,7 @@ + TransferRequestCount i=63 i=78 @@ -5370,6 +5949,7 @@ + TransferredToAltClientCount i=63 i=78 @@ -5377,6 +5957,7 @@ + TransferredToSameClientCount i=63 i=78 @@ -5384,6 +5965,7 @@ + PublishRequestCount i=63 i=78 @@ -5391,6 +5973,7 @@ + DataChangeNotificationsCount i=63 i=78 @@ -5398,6 +5981,7 @@ + EventNotificationsCount i=63 i=78 @@ -5405,6 +5989,7 @@ + NotificationsCount i=63 i=78 @@ -5412,6 +5997,7 @@ + LatePublishRequestCount i=63 i=78 @@ -5419,6 +6005,7 @@ + CurrentKeepAliveCount i=63 i=78 @@ -5426,6 +6013,7 @@ + CurrentLifetimeCount i=63 i=78 @@ -5433,6 +6021,7 @@ + UnacknowledgedMessageCount i=63 i=78 @@ -5440,6 +6029,7 @@ + DiscardedMessageCount i=63 i=78 @@ -5447,6 +6037,7 @@ + MonitoredItemCount i=63 i=78 @@ -5454,6 +6045,7 @@ + DisabledMonitoredItemCount i=63 i=78 @@ -5461,6 +6053,7 @@ + MonitoringQueueOverflowCount i=63 i=78 @@ -5468,6 +6061,7 @@ + NextSequenceNumber i=63 i=78 @@ -5475,6 +6069,7 @@ + EventQueueOverflowCount i=63 i=78 @@ -5482,12 +6077,14 @@ + SessionDiagnosticsArrayType i=12816 i=63 + SessionDiagnostics i=12817 i=12818 @@ -5538,6 +6135,7 @@ + SessionId i=63 i=78 @@ -5545,6 +6143,7 @@ + SessionName i=63 i=78 @@ -5552,6 +6151,7 @@ + ClientDescription i=63 i=78 @@ -5559,6 +6159,7 @@ + ServerUri i=63 i=78 @@ -5566,6 +6167,7 @@ + EndpointUrl i=63 i=78 @@ -5573,6 +6175,7 @@ + LocaleIds i=63 i=78 @@ -5580,6 +6183,7 @@ + ActualSessionTimeout i=63 i=78 @@ -5587,6 +6191,7 @@ + MaxResponseMessageSize i=63 i=78 @@ -5594,6 +6199,7 @@ + ClientConnectionTime i=63 i=78 @@ -5601,6 +6207,7 @@ + ClientLastContactTime i=63 i=78 @@ -5608,6 +6215,7 @@ + CurrentSubscriptionsCount i=63 i=78 @@ -5615,6 +6223,7 @@ + CurrentMonitoredItemsCount i=63 i=78 @@ -5622,6 +6231,7 @@ + CurrentPublishRequestsInQueue i=63 i=78 @@ -5629,6 +6239,7 @@ + TotalRequestCount i=63 i=78 @@ -5636,6 +6247,7 @@ + UnauthorizedRequestCount i=63 i=78 @@ -5643,6 +6255,7 @@ + ReadCount i=63 i=78 @@ -5650,6 +6263,7 @@ + HistoryReadCount i=63 i=78 @@ -5657,6 +6271,7 @@ + WriteCount i=63 i=78 @@ -5664,6 +6279,7 @@ + HistoryUpdateCount i=63 i=78 @@ -5671,6 +6287,7 @@ + CallCount i=63 i=78 @@ -5678,6 +6295,7 @@ + CreateMonitoredItemsCount i=63 i=78 @@ -5685,6 +6303,7 @@ + ModifyMonitoredItemsCount i=63 i=78 @@ -5692,6 +6311,7 @@ + SetMonitoringModeCount i=63 i=78 @@ -5699,6 +6319,7 @@ + SetTriggeringCount i=63 i=78 @@ -5706,6 +6327,7 @@ + DeleteMonitoredItemsCount i=63 i=78 @@ -5713,6 +6335,7 @@ + CreateSubscriptionCount i=63 i=78 @@ -5720,6 +6343,7 @@ + ModifySubscriptionCount i=63 i=78 @@ -5727,6 +6351,7 @@ + SetPublishingModeCount i=63 i=78 @@ -5734,6 +6359,7 @@ + PublishCount i=63 i=78 @@ -5741,6 +6367,7 @@ + RepublishCount i=63 i=78 @@ -5748,6 +6375,7 @@ + TransferSubscriptionsCount i=63 i=78 @@ -5755,6 +6383,7 @@ + DeleteSubscriptionsCount i=63 i=78 @@ -5762,6 +6391,7 @@ + AddNodesCount i=63 i=78 @@ -5769,6 +6399,7 @@ + AddReferencesCount i=63 i=78 @@ -5776,6 +6407,7 @@ + DeleteNodesCount i=63 i=78 @@ -5783,6 +6415,7 @@ + DeleteReferencesCount i=63 i=78 @@ -5790,6 +6423,7 @@ + BrowseCount i=63 i=78 @@ -5797,6 +6431,7 @@ + BrowseNextCount i=63 i=78 @@ -5804,6 +6439,7 @@ + TranslateBrowsePathsToNodeIdsCount i=63 i=78 @@ -5811,6 +6447,7 @@ + QueryFirstCount i=63 i=78 @@ -5818,6 +6455,7 @@ + QueryNextCount i=63 i=78 @@ -5825,6 +6463,7 @@ + RegisterNodesCount i=63 i=78 @@ -5832,6 +6471,7 @@ + UnregisterNodesCount i=63 i=78 @@ -5839,6 +6479,7 @@ + SessionDiagnosticsVariableType i=2198 i=2199 @@ -5887,6 +6528,7 @@ + SessionId i=63 i=78 @@ -5894,6 +6536,7 @@ + SessionName i=63 i=78 @@ -5901,6 +6544,7 @@ + ClientDescription i=63 i=78 @@ -5908,6 +6552,7 @@ + ServerUri i=63 i=78 @@ -5915,6 +6560,7 @@ + EndpointUrl i=63 i=78 @@ -5922,6 +6568,7 @@ + LocaleIds i=63 i=78 @@ -5929,6 +6576,7 @@ + ActualSessionTimeout i=63 i=78 @@ -5936,6 +6584,7 @@ + MaxResponseMessageSize i=63 i=78 @@ -5943,6 +6592,7 @@ + ClientConnectionTime i=63 i=78 @@ -5950,6 +6600,7 @@ + ClientLastContactTime i=63 i=78 @@ -5957,6 +6608,7 @@ + CurrentSubscriptionsCount i=63 i=78 @@ -5964,6 +6616,7 @@ + CurrentMonitoredItemsCount i=63 i=78 @@ -5971,6 +6624,7 @@ + CurrentPublishRequestsInQueue i=63 i=78 @@ -5978,6 +6632,7 @@ + TotalRequestCount i=63 i=78 @@ -5985,6 +6640,7 @@ + UnauthorizedRequestCount i=63 i=78 @@ -5992,6 +6648,7 @@ + ReadCount i=63 i=78 @@ -5999,6 +6656,7 @@ + HistoryReadCount i=63 i=78 @@ -6006,6 +6664,7 @@ + WriteCount i=63 i=78 @@ -6013,6 +6672,7 @@ + HistoryUpdateCount i=63 i=78 @@ -6020,6 +6680,7 @@ + CallCount i=63 i=78 @@ -6027,6 +6688,7 @@ + CreateMonitoredItemsCount i=63 i=78 @@ -6034,6 +6696,7 @@ + ModifyMonitoredItemsCount i=63 i=78 @@ -6041,6 +6704,7 @@ + SetMonitoringModeCount i=63 i=78 @@ -6048,6 +6712,7 @@ + SetTriggeringCount i=63 i=78 @@ -6055,6 +6720,7 @@ + DeleteMonitoredItemsCount i=63 i=78 @@ -6062,6 +6728,7 @@ + CreateSubscriptionCount i=63 i=78 @@ -6069,6 +6736,7 @@ + ModifySubscriptionCount i=63 i=78 @@ -6076,6 +6744,7 @@ + SetPublishingModeCount i=63 i=78 @@ -6083,6 +6752,7 @@ + PublishCount i=63 i=78 @@ -6090,6 +6760,7 @@ + RepublishCount i=63 i=78 @@ -6097,6 +6768,7 @@ + TransferSubscriptionsCount i=63 i=78 @@ -6104,6 +6776,7 @@ + DeleteSubscriptionsCount i=63 i=78 @@ -6111,6 +6784,7 @@ + AddNodesCount i=63 i=78 @@ -6118,6 +6792,7 @@ + AddReferencesCount i=63 i=78 @@ -6125,6 +6800,7 @@ + DeleteNodesCount i=63 i=78 @@ -6132,6 +6808,7 @@ + DeleteReferencesCount i=63 i=78 @@ -6139,6 +6816,7 @@ + BrowseCount i=63 i=78 @@ -6146,6 +6824,7 @@ + BrowseNextCount i=63 i=78 @@ -6153,6 +6832,7 @@ + TranslateBrowsePathsToNodeIdsCount i=63 i=78 @@ -6160,6 +6840,7 @@ + QueryFirstCount i=63 i=78 @@ -6167,6 +6848,7 @@ + QueryNextCount i=63 i=78 @@ -6174,6 +6856,7 @@ + RegisterNodesCount i=63 i=78 @@ -6181,6 +6864,7 @@ + UnregisterNodesCount i=63 i=78 @@ -6188,12 +6872,14 @@ + SessionSecurityDiagnosticsArrayType i=12860 i=63 + SessionSecurityDiagnostics i=12861 i=12862 @@ -6210,6 +6896,7 @@ + SessionId i=63 i=78 @@ -6217,6 +6904,7 @@ + ClientUserIdOfSession i=63 i=78 @@ -6224,6 +6912,7 @@ + ClientUserIdHistory i=63 i=78 @@ -6231,6 +6920,7 @@ + AuthenticationMechanism i=63 i=78 @@ -6238,6 +6928,7 @@ + Encoding i=63 i=78 @@ -6245,6 +6936,7 @@ + TransportProtocol i=63 i=78 @@ -6252,6 +6944,7 @@ + SecurityMode i=63 i=78 @@ -6259,6 +6952,7 @@ + SecurityPolicyUri i=63 i=78 @@ -6266,6 +6960,7 @@ + ClientCertificate i=63 i=78 @@ -6273,6 +6968,7 @@ + SessionSecurityDiagnosticsType i=2245 i=2246 @@ -6287,6 +6983,7 @@ + SessionId i=63 i=78 @@ -6294,6 +6991,7 @@ + ClientUserIdOfSession i=63 i=78 @@ -6301,6 +6999,7 @@ + ClientUserIdHistory i=63 i=78 @@ -6308,6 +7007,7 @@ + AuthenticationMechanism i=63 i=78 @@ -6315,6 +7015,7 @@ + Encoding i=63 i=78 @@ -6322,6 +7023,7 @@ + TransportProtocol i=63 i=78 @@ -6329,6 +7031,7 @@ + SecurityMode i=63 i=78 @@ -6336,6 +7039,7 @@ + SecurityPolicyUri i=63 i=78 @@ -6343,6 +7047,7 @@ + ClientCertificate i=63 i=78 @@ -6350,6 +7055,7 @@ + OptionSetType i=11488 i=11701 @@ -6357,6 +7063,7 @@ + OptionSetValues i=68 i=78 @@ -6364,6 +7071,7 @@ + BitMask i=68 i=80 @@ -6371,6 +7079,7 @@ + SelectionListType i=17632 i=17633 @@ -6379,6 +7088,7 @@ + Selections i=68 i=78 @@ -6386,6 +7096,7 @@ + SelectionDescriptions i=68 i=80 @@ -6393,6 +7104,7 @@ + RestrictToList i=68 i=80 @@ -6400,6 +7112,7 @@ + AudioVariableType i=17988 i=17989 @@ -6408,6 +7121,7 @@ + ListId i=68 i=80 @@ -6415,6 +7129,7 @@ + AgencyId i=68 i=80 @@ -6422,6 +7137,7 @@ + VersionId i=68 i=80 @@ -6429,6 +7145,7 @@ + EventTypes i=86 i=2041 @@ -6436,6 +7153,7 @@ + Server i=2254 i=2255 @@ -6458,18 +7176,21 @@ + ServerArray i=68 i=2253 + NamespaceArray i=68 i=2253 + ServerStatus i=2257 i=2258 @@ -6482,24 +7203,28 @@ + StartTime i=63 i=2256 + CurrentTime i=63 i=2256 + State i=63 i=2256 + BuildInfo i=2262 i=2263 @@ -6512,78 +7237,91 @@ + ProductUri i=63 i=2260 + ManufacturerName i=63 i=2260 + ProductName i=63 i=2260 + SoftwareVersion i=63 i=2260 + BuildNumber i=63 i=2260 + BuildDate i=63 i=2260 + SecondsTillShutdown i=63 i=2256 + ShutdownReason i=63 i=2256 + ServiceLevel i=68 i=2253 + Auditing i=68 i=2253 + EstimatedReturnTime i=68 i=2253 + LocalTime i=68 i=2253 + ServerCapabilities i=2269 i=2271 @@ -6604,66 +7342,77 @@ + ServerProfileArray i=68 i=2268 + LocaleIdArray i=68 i=2268 + MinSupportedSampleRate i=68 i=2268 + MaxBrowseContinuationPoints i=68 i=2268 + MaxQueryContinuationPoints i=68 i=2268 + MaxHistoryContinuationPoints i=68 i=2268 + SoftwareCertificates i=68 i=2268 + MaxArrayLength i=68 i=2268 + MaxStringLength i=68 i=2268 + MaxByteStringLength i=68 i=2268 + OperationLimits i=11705 i=12165 @@ -6682,90 +7431,105 @@ + MaxNodesPerRead i=68 i=11704 + MaxNodesPerHistoryReadData i=68 i=11704 + MaxNodesPerHistoryReadEvents i=68 i=11704 + MaxNodesPerWrite i=68 i=11704 + MaxNodesPerHistoryUpdateData i=68 i=11704 + MaxNodesPerHistoryUpdateEvents i=68 i=11704 + MaxNodesPerMethodCall i=68 i=11704 + MaxNodesPerBrowse i=68 i=11704 + MaxNodesPerRegisterNodes i=68 i=11704 + MaxNodesPerTranslateBrowsePathsToNodeIds i=68 i=11704 + MaxNodesPerNodeManagement i=68 i=11704 + MaxMonitoredItemsPerCall i=68 i=11704 + ModellingRules i=61 i=2268 + AggregateFunctions i=61 i=2268 + RoleSet i=16301 i=16304 @@ -6774,6 +7538,7 @@ + AddRole i=16302 i=16303 @@ -6781,6 +7546,7 @@ + InputArguments i=68 i=16301 @@ -6799,7 +7565,6 @@ -1 - @@ -6815,7 +7580,6 @@ -1 - @@ -6823,6 +7587,7 @@ + OutputArguments i=68 i=16301 @@ -6841,7 +7606,6 @@ -1 - @@ -6849,12 +7613,14 @@ + RemoveRole i=16305 i=15606 + InputArguments i=68 i=16304 @@ -6873,7 +7639,6 @@ -1 - @@ -6881,6 +7646,7 @@ + ServerDiagnostics i=2275 i=2289 @@ -6892,6 +7658,7 @@ + ServerDiagnosticsSummary i=2276 i=2277 @@ -6910,90 +7677,105 @@ + ServerViewCount i=63 i=2275 + CurrentSessionCount i=63 i=2275 + CumulatedSessionCount i=63 i=2275 + SecurityRejectedSessionCount i=63 i=2275 + RejectedSessionCount i=63 i=2275 + SessionTimeoutCount i=63 i=2275 + SessionAbortCount i=63 i=2275 + PublishingIntervalCount i=63 i=2275 + CurrentSubscriptionCount i=63 i=2275 + CumulatedSubscriptionCount i=63 i=2275 + SecurityRejectedRequestsCount i=63 i=2275 + RejectedRequestsCount i=63 i=2275 + SamplingIntervalDiagnosticsArray i=2164 i=2274 + SubscriptionDiagnosticsArray i=2171 i=2274 + SessionsDiagnosticsSummary i=3707 i=3708 @@ -7002,30 +7784,35 @@ + SessionDiagnosticsArray i=2196 i=3706 + SessionSecurityDiagnosticsArray i=2243 i=3706 + EnabledFlag i=68 i=2274 + VendorServerInfo i=2033 i=2253 + ServerRedundancy i=3709 i=11312 @@ -7037,42 +7824,49 @@ + RedundancySupport i=68 i=2296 + CurrentServerId i=68 i=2296 + RedundantServerArray i=68 i=2296 + ServerUriArray i=68 i=2296 + ServerNetworkGroups i=68 i=2296 + Namespaces i=11645 i=2253 + GetMonitoredItems i=11493 i=11494 @@ -7080,6 +7874,7 @@ + InputArguments i=68 i=11492 @@ -7098,7 +7893,6 @@ -1 - @@ -7106,6 +7900,7 @@ + OutputArguments i=68 i=11492 @@ -7124,7 +7919,6 @@ 1 - @@ -7140,7 +7934,6 @@ 1 - @@ -7148,12 +7941,14 @@ + ResendData i=12874 i=2253 + InputArguments i=68 i=12873 @@ -7172,7 +7967,6 @@ -1 - @@ -7180,6 +7974,7 @@ + SetSubscriptionDurable i=12750 i=12751 @@ -7187,6 +7982,7 @@ + InputArguments i=68 i=12749 @@ -7205,7 +8001,6 @@ -1 - @@ -7221,7 +8016,6 @@ -1 - @@ -7229,6 +8023,7 @@ + OutputArguments i=68 i=12749 @@ -7247,7 +8042,6 @@ -1 - @@ -7255,12 +8049,14 @@ + RequestServerStateChange i=12887 i=2253 + InputArguments i=68 i=12886 @@ -7279,7 +8075,6 @@ -1 - @@ -7295,7 +8090,6 @@ -1 - @@ -7311,7 +8105,6 @@ -1 - @@ -7327,7 +8120,6 @@ -1 - @@ -7343,7 +8135,6 @@ -1 - @@ -7351,6 +8142,7 @@ + HistoryServerCapabilities i=11193 i=11242 @@ -7372,131 +8164,151 @@ + AccessHistoryDataCapability i=68 i=11192 + AccessHistoryEventsCapability i=68 i=11192 + MaxReturnDataValues i=68 i=11192 + MaxReturnEventValues i=68 i=11192 + InsertDataCapability i=68 i=11192 + ReplaceDataCapability i=68 i=11192 + UpdateDataCapability i=68 i=11192 + DeleteRawCapability i=68 i=11192 + DeleteAtTimeCapability i=68 i=11192 + InsertEventCapability i=68 i=11192 + ReplaceEventCapability i=68 i=11192 + UpdateEventCapability i=68 i=11192 + DeleteEventCapability i=68 i=11192 + InsertAnnotationCapability i=68 i=11192 + AggregateFunctions i=61 i=11192 + BitFieldMaskDataType i=9 + KeyValuePair i=22 - + + AdditionalParametersType i=22 - + + EphemeralKeyType i=22 - + + EndpointType i=22 - + @@ -7504,6 +8316,7 @@ + StateMachineType i=2769 i=2770 @@ -7511,6 +8324,7 @@ + CurrentState i=3720 i=2755 @@ -7519,6 +8333,7 @@ + Id i=68 i=78 @@ -7526,6 +8341,7 @@ + LastTransition i=3724 i=2762 @@ -7534,6 +8350,7 @@ + Id i=68 i=78 @@ -7541,6 +8358,7 @@ + StateVariableType i=2756 i=2757 @@ -7550,6 +8368,7 @@ + Id i=68 i=78 @@ -7557,6 +8376,7 @@ + Name i=68 i=80 @@ -7564,6 +8384,7 @@ + Number i=68 i=80 @@ -7571,6 +8392,7 @@ + EffectiveDisplayName i=68 i=80 @@ -7578,6 +8400,7 @@ + TransitionVariableType i=2763 i=2764 @@ -7588,6 +8411,7 @@ + Id i=68 i=78 @@ -7595,6 +8419,7 @@ + Name i=68 i=80 @@ -7602,6 +8427,7 @@ + Number i=68 i=80 @@ -7609,6 +8435,7 @@ + TransitionTime i=68 i=80 @@ -7616,6 +8443,7 @@ + EffectiveTransitionTime i=68 i=80 @@ -7623,6 +8451,7 @@ + FiniteStateMachineType i=2772 i=2773 @@ -7632,6 +8461,7 @@ + CurrentState i=3728 i=2760 @@ -7640,6 +8470,7 @@ + Id i=68 i=78 @@ -7647,6 +8478,7 @@ + LastTransition i=3732 i=2767 @@ -7655,6 +8487,7 @@ + Id i=68 i=78 @@ -7662,6 +8495,7 @@ + AvailableStates i=63 i=80 @@ -7669,6 +8503,7 @@ + AvailableTransitions i=63 i=80 @@ -7676,12 +8511,14 @@ + FiniteStateVariableType i=2761 i=2755 + Id i=68 i=78 @@ -7689,12 +8526,14 @@ + FiniteTransitionVariableType i=2768 i=2762 + Id i=68 i=78 @@ -7702,12 +8541,14 @@ + StateType i=2308 i=58 + StateNumber i=68 i=78 @@ -7715,17 +8556,20 @@ + InitialStateType i=2307 + TransitionType i=2312 i=58 + TransitionNumber i=68 i=78 @@ -7733,28 +8577,33 @@ + ChoiceStateType i=2307 + HasGuard i=47 GuardOf + GuardVariableType i=63 + ExpressionGuardVariableType i=15129 i=15113 + Expression i=68 i=78 @@ -7762,11 +8611,13 @@ + ElseGuardVariableType i=15113 + TransitionEventType i=2774 i=2775 @@ -7775,6 +8626,7 @@ + Transition i=3754 i=2762 @@ -7783,6 +8635,7 @@ + Id i=68 i=78 @@ -7790,6 +8643,7 @@ + FromState i=3746 i=2755 @@ -7798,6 +8652,7 @@ + Id i=68 i=78 @@ -7805,6 +8660,7 @@ + ToState i=3750 i=2755 @@ -7813,6 +8669,7 @@ + Id i=68 i=78 @@ -7820,6 +8677,7 @@ + AuditUpdateStateEventType i=2777 i=2778 @@ -7827,6 +8685,7 @@ + OldStateId i=68 i=78 @@ -7834,6 +8693,7 @@ + NewStateId i=68 i=78 @@ -7841,11 +8701,12 @@ + OpenFileMode i=11940 i=29 - + @@ -7853,6 +8714,7 @@ + EnumValues i=68 i=78 @@ -7872,7 +8734,6 @@ Read - @@ -7888,7 +8749,6 @@ Write - @@ -7904,7 +8764,6 @@ EraseExisting - @@ -7920,7 +8779,6 @@ Append - @@ -7928,6 +8786,7 @@ + FileDirectoryType i=13354 i=13366 @@ -7939,6 +8798,7 @@ + <FileDirectoryName> i=13355 i=13358 @@ -7950,6 +8810,7 @@ + CreateDirectory i=13356 i=13357 @@ -7958,6 +8819,7 @@ + InputArguments i=68 i=78 @@ -7977,7 +8839,6 @@ -1 - @@ -7985,6 +8846,7 @@ + OutputArguments i=68 i=78 @@ -8004,7 +8866,6 @@ -1 - @@ -8012,6 +8873,7 @@ + CreateFile i=13359 i=13360 @@ -8020,6 +8882,7 @@ + InputArguments i=68 i=78 @@ -8039,7 +8902,6 @@ -1 - @@ -8055,7 +8917,6 @@ -1 - @@ -8063,6 +8924,7 @@ + OutputArguments i=68 i=78 @@ -8082,7 +8944,6 @@ -1 - @@ -8098,7 +8959,6 @@ -1 - @@ -8106,6 +8966,7 @@ + Delete i=17719 i=78 @@ -8113,6 +8974,7 @@ + InputArguments i=68 i=78 @@ -8132,7 +8994,6 @@ -1 - @@ -8140,6 +9001,7 @@ + MoveOrCopy i=13364 i=13365 @@ -8148,6 +9010,7 @@ + InputArguments i=68 i=78 @@ -8167,7 +9030,6 @@ -1 - @@ -8183,7 +9045,6 @@ -1 - @@ -8199,7 +9060,6 @@ -1 - @@ -8215,7 +9075,6 @@ -1 - @@ -8223,6 +9082,7 @@ + OutputArguments i=68 i=78 @@ -8242,7 +9102,6 @@ -1 - @@ -8250,6 +9109,7 @@ + <FileName> i=13367 i=13368 @@ -8267,6 +9127,7 @@ + Size i=68 i=78 @@ -8274,6 +9135,7 @@ + Writable i=68 i=78 @@ -8281,6 +9143,7 @@ + UserWritable i=68 i=78 @@ -8288,6 +9151,7 @@ + OpenCount i=68 i=78 @@ -8295,6 +9159,7 @@ + Open i=13373 i=13374 @@ -8303,6 +9168,7 @@ + InputArguments i=68 i=78 @@ -8322,7 +9188,6 @@ -1 - @@ -8330,6 +9195,7 @@ + OutputArguments i=68 i=78 @@ -8349,7 +9215,6 @@ -1 - @@ -8357,6 +9222,7 @@ + Close i=13376 i=78 @@ -8364,6 +9230,7 @@ + InputArguments i=68 i=78 @@ -8383,7 +9250,6 @@ -1 - @@ -8391,6 +9257,7 @@ + Read i=13378 i=13379 @@ -8399,6 +9266,7 @@ + InputArguments i=68 i=78 @@ -8418,7 +9286,6 @@ -1 - @@ -8434,7 +9301,6 @@ -1 - @@ -8442,6 +9308,7 @@ + OutputArguments i=68 i=78 @@ -8461,7 +9328,6 @@ -1 - @@ -8469,6 +9335,7 @@ + Write i=13381 i=78 @@ -8476,6 +9343,7 @@ + InputArguments i=68 i=78 @@ -8495,7 +9363,6 @@ -1 - @@ -8511,7 +9378,6 @@ -1 - @@ -8519,6 +9385,7 @@ + GetPosition i=13383 i=13384 @@ -8527,6 +9394,7 @@ + InputArguments i=68 i=78 @@ -8546,7 +9414,6 @@ -1 - @@ -8554,6 +9421,7 @@ + OutputArguments i=68 i=78 @@ -8573,7 +9441,6 @@ -1 - @@ -8581,6 +9448,7 @@ + SetPosition i=13386 i=78 @@ -8588,6 +9456,7 @@ + InputArguments i=68 i=78 @@ -8607,7 +9476,6 @@ -1 - @@ -8623,7 +9491,6 @@ -1 - @@ -8631,6 +9498,7 @@ + CreateDirectory i=13388 i=13389 @@ -8639,6 +9507,7 @@ + InputArguments i=68 i=78 @@ -8658,7 +9527,6 @@ -1 - @@ -8666,6 +9534,7 @@ + OutputArguments i=68 i=78 @@ -8685,7 +9554,6 @@ -1 - @@ -8693,6 +9561,7 @@ + CreateFile i=13391 i=13392 @@ -8701,6 +9570,7 @@ + InputArguments i=68 i=78 @@ -8720,7 +9590,6 @@ -1 - @@ -8736,7 +9605,6 @@ -1 - @@ -8744,6 +9612,7 @@ + OutputArguments i=68 i=78 @@ -8763,7 +9632,6 @@ -1 - @@ -8779,7 +9647,6 @@ -1 - @@ -8787,6 +9654,7 @@ + Delete i=13394 i=78 @@ -8794,6 +9662,7 @@ + InputArguments i=68 i=78 @@ -8813,7 +9682,6 @@ -1 - @@ -8821,6 +9689,7 @@ + MoveOrCopy i=13396 i=13397 @@ -8829,6 +9698,7 @@ + InputArguments i=68 i=78 @@ -8848,7 +9718,6 @@ -1 - @@ -8864,7 +9733,6 @@ -1 - @@ -8880,7 +9748,6 @@ -1 - @@ -8896,7 +9763,6 @@ -1 - @@ -8904,6 +9770,7 @@ + OutputArguments i=68 i=78 @@ -8923,7 +9790,6 @@ -1 - @@ -8931,6 +9797,7 @@ + FileSystem i=16348 i=16351 @@ -8940,6 +9807,7 @@ + CreateDirectory i=16349 i=16350 @@ -8947,6 +9815,7 @@ + InputArguments i=68 i=16348 @@ -8965,7 +9834,6 @@ -1 - @@ -8973,6 +9841,7 @@ + OutputArguments i=68 i=16348 @@ -8991,7 +9860,6 @@ -1 - @@ -8999,6 +9867,7 @@ + CreateFile i=16352 i=16353 @@ -9006,6 +9875,7 @@ + InputArguments i=68 i=16351 @@ -9024,7 +9894,6 @@ -1 - @@ -9040,7 +9909,6 @@ -1 - @@ -9048,6 +9916,7 @@ + OutputArguments i=68 i=16351 @@ -9066,7 +9935,6 @@ -1 - @@ -9082,7 +9950,6 @@ -1 - @@ -9090,12 +9957,14 @@ + Delete i=16355 i=16314 + InputArguments i=68 i=16354 @@ -9114,7 +9983,6 @@ -1 - @@ -9122,6 +9990,7 @@ + MoveOrCopy i=16357 i=16358 @@ -9129,6 +9998,7 @@ + InputArguments i=68 i=16356 @@ -9147,7 +10017,6 @@ -1 - @@ -9163,7 +10032,6 @@ -1 - @@ -9179,7 +10047,6 @@ -1 - @@ -9195,7 +10062,6 @@ -1 - @@ -9203,6 +10069,7 @@ + OutputArguments i=68 i=16356 @@ -9221,7 +10088,6 @@ -1 - @@ -9229,6 +10095,7 @@ + TemporaryFileTransferType i=15745 i=15746 @@ -9239,6 +10106,7 @@ + ClientProcessingTimeout i=68 i=78 @@ -9246,6 +10114,7 @@ + GenerateFileForRead i=15747 i=15748 @@ -9254,6 +10123,7 @@ + InputArguments i=68 i=78 @@ -9273,7 +10143,6 @@ -1 - @@ -9281,6 +10150,7 @@ + OutputArguments i=68 i=78 @@ -9300,7 +10170,6 @@ -1 - @@ -9316,7 +10185,6 @@ -1 - @@ -9332,7 +10200,6 @@ -1 - @@ -9340,6 +10207,7 @@ + GenerateFileForWrite i=16359 i=15750 @@ -9348,6 +10216,7 @@ + InputArguments i=68 i=78 @@ -9367,7 +10236,6 @@ -1 - @@ -9375,6 +10243,7 @@ + OutputArguments i=68 i=78 @@ -9394,7 +10263,6 @@ -1 - @@ -9410,7 +10278,6 @@ -1 - @@ -9418,6 +10285,7 @@ + CloseAndCommit i=15752 i=15753 @@ -9426,6 +10294,7 @@ + InputArguments i=68 i=78 @@ -9445,7 +10314,6 @@ -1 - @@ -9453,6 +10321,7 @@ + OutputArguments i=68 i=78 @@ -9472,7 +10341,6 @@ -1 - @@ -9480,6 +10348,7 @@ + <TransferState> i=15755 i=15794 @@ -9489,6 +10358,7 @@ + CurrentState i=15756 i=2760 @@ -9497,6 +10367,7 @@ + Id i=68 i=78 @@ -9504,12 +10375,14 @@ + Reset i=78 i=15754 + FileTransferStateMachineType i=15815 i=15817 @@ -9530,6 +10403,7 @@ + Idle i=15816 i=15825 @@ -9542,6 +10416,7 @@ + StateNumber i=68 i=78 @@ -9549,6 +10424,7 @@ + ReadPrepare i=15818 i=15825 @@ -9559,6 +10435,7 @@ + StateNumber i=68 i=78 @@ -9566,6 +10443,7 @@ + ReadTransfer i=15820 i=15827 @@ -9576,6 +10454,7 @@ + StateNumber i=68 i=78 @@ -9583,6 +10462,7 @@ + ApplyWrite i=15822 i=15831 @@ -9593,6 +10473,7 @@ + StateNumber i=68 i=78 @@ -9600,6 +10481,7 @@ + Error i=15824 i=15835 @@ -9611,6 +10493,7 @@ + StateNumber i=68 i=78 @@ -9618,6 +10501,7 @@ + IdleToReadPrepare i=15826 i=15815 @@ -9628,6 +10512,7 @@ + TransitionNumber i=68 i=78 @@ -9635,6 +10520,7 @@ + ReadPrepareToReadTransfer i=15828 i=15817 @@ -9645,6 +10531,7 @@ + TransitionNumber i=68 i=78 @@ -9652,6 +10539,7 @@ + ReadTransferToIdle i=15830 i=15819 @@ -9662,6 +10550,7 @@ + TransitionNumber i=68 i=78 @@ -9669,6 +10558,7 @@ + IdleToApplyWrite i=15832 i=15815 @@ -9679,6 +10569,7 @@ + TransitionNumber i=68 i=78 @@ -9686,6 +10577,7 @@ + ApplyWriteToIdle i=15834 i=15821 @@ -9696,6 +10588,7 @@ + TransitionNumber i=68 i=78 @@ -9703,6 +10596,7 @@ + ReadPrepareToError i=15836 i=15817 @@ -9713,6 +10607,7 @@ + TransitionNumber i=68 i=78 @@ -9720,6 +10615,7 @@ + ReadTransferToError i=15838 i=15819 @@ -9730,6 +10626,7 @@ + TransitionNumber i=68 i=78 @@ -9737,6 +10634,7 @@ + ApplyWriteToError i=15840 i=15821 @@ -9747,6 +10645,7 @@ + TransitionNumber i=68 i=78 @@ -9754,6 +10653,7 @@ + ErrorToIdle i=15842 i=15823 @@ -9764,6 +10664,7 @@ + TransitionNumber i=68 i=78 @@ -9771,12 +10672,14 @@ + Reset i=78 i=15803 + RoleSetType i=15608 i=15997 @@ -9785,6 +10688,7 @@ + <RoleName> i=16162 i=15620 @@ -9793,6 +10697,7 @@ + Identities i=68 i=78 @@ -9800,6 +10705,7 @@ + AddRole i=15998 i=15999 @@ -9808,6 +10714,7 @@ + InputArguments i=68 i=78 @@ -9827,7 +10734,6 @@ -1 - @@ -9843,7 +10749,6 @@ -1 - @@ -9851,6 +10756,7 @@ + OutputArguments i=68 i=78 @@ -9870,7 +10776,6 @@ -1 - @@ -9878,6 +10783,7 @@ + RemoveRole i=16001 i=78 @@ -9885,6 +10791,7 @@ + InputArguments i=68 i=78 @@ -9904,7 +10811,6 @@ -1 - @@ -9912,6 +10818,7 @@ + RoleType i=16173 i=16174 @@ -9928,6 +10835,7 @@ + Identities i=68 i=78 @@ -9935,6 +10843,7 @@ + Applications i=68 i=80 @@ -9942,6 +10851,7 @@ + ApplicationsExclude i=68 i=80 @@ -9949,6 +10859,7 @@ + Endpoints i=68 i=80 @@ -9956,6 +10867,7 @@ + EndpointsExclude i=68 i=80 @@ -9963,6 +10875,7 @@ + AddIdentity i=15625 i=80 @@ -9970,6 +10883,7 @@ + InputArguments i=68 i=78 @@ -9989,7 +10903,6 @@ -1 - @@ -9997,6 +10910,7 @@ + RemoveIdentity i=15627 i=80 @@ -10004,6 +10918,7 @@ + InputArguments i=68 i=78 @@ -10023,7 +10938,6 @@ -1 - @@ -10031,6 +10945,7 @@ + AddApplication i=16177 i=80 @@ -10038,6 +10953,7 @@ + InputArguments i=68 i=78 @@ -10057,7 +10973,6 @@ -1 - @@ -10065,6 +10980,7 @@ + RemoveApplication i=16179 i=80 @@ -10072,6 +10988,7 @@ + InputArguments i=68 i=78 @@ -10091,7 +11008,6 @@ -1 - @@ -10099,6 +11015,7 @@ + AddEndpoint i=16181 i=80 @@ -10106,6 +11023,7 @@ + InputArguments i=68 i=78 @@ -10125,7 +11043,6 @@ -1 - @@ -10133,6 +11050,7 @@ + RemoveEndpoint i=16183 i=80 @@ -10140,6 +11058,7 @@ + InputArguments i=68 i=78 @@ -10159,7 +11078,6 @@ -1 - @@ -10167,11 +11085,12 @@ + IdentityCriteriaType i=15633 i=29 - + @@ -10181,6 +11100,7 @@ + EnumValues i=68 i=78 @@ -10200,7 +11120,6 @@ UserName - @@ -10216,7 +11135,6 @@ Thumbprint - @@ -10232,7 +11150,6 @@ Role - @@ -10248,7 +11165,6 @@ GroupId - @@ -10264,7 +11180,6 @@ Anonymous - @@ -10280,7 +11195,6 @@ AuthenticatedUser - @@ -10288,20 +11202,23 @@ + IdentityMappingRuleType i=22 - + + RoleMappingRuleChangedAuditEventType i=2127 + Anonymous i=16192 i=16193 @@ -10319,42 +11236,49 @@ + Identities i=68 i=15644 + Applications i=68 i=15644 + ApplicationsExclude i=68 i=15644 + Endpoints i=68 i=15644 + EndpointsExclude i=68 i=15644 + AddIdentity i=15649 i=15644 + InputArguments i=68 i=15648 @@ -10373,7 +11297,6 @@ -1 - @@ -10381,12 +11304,14 @@ + RemoveIdentity i=15651 i=15644 + InputArguments i=68 i=15650 @@ -10405,7 +11330,6 @@ -1 - @@ -10413,12 +11337,14 @@ + AddApplication i=16196 i=15644 + InputArguments i=68 i=16195 @@ -10437,7 +11363,6 @@ -1 - @@ -10445,12 +11370,14 @@ + RemoveApplication i=16198 i=15644 + InputArguments i=68 i=16197 @@ -10469,7 +11396,6 @@ -1 - @@ -10477,12 +11403,14 @@ + AddEndpoint i=16200 i=15644 + InputArguments i=68 i=16199 @@ -10501,7 +11429,6 @@ -1 - @@ -10509,12 +11436,14 @@ + RemoveEndpoint i=16202 i=15644 + InputArguments i=68 i=16201 @@ -10533,7 +11462,6 @@ -1 - @@ -10541,6 +11469,7 @@ + AuthenticatedUser i=16203 i=16204 @@ -10558,42 +11487,49 @@ + Identities i=68 i=15656 + Applications i=68 i=15656 + ApplicationsExclude i=68 i=15656 + Endpoints i=68 i=15656 + EndpointsExclude i=68 i=15656 + AddIdentity i=15661 i=15656 + InputArguments i=68 i=15660 @@ -10612,7 +11548,6 @@ -1 - @@ -10620,12 +11555,14 @@ + RemoveIdentity i=15663 i=15656 + InputArguments i=68 i=15662 @@ -10644,7 +11581,6 @@ -1 - @@ -10652,12 +11588,14 @@ + AddApplication i=16207 i=15656 + InputArguments i=68 i=16206 @@ -10676,7 +11614,6 @@ -1 - @@ -10684,12 +11621,14 @@ + RemoveApplication i=16209 i=15656 + InputArguments i=68 i=16208 @@ -10708,7 +11647,6 @@ -1 - @@ -10716,12 +11654,14 @@ + AddEndpoint i=16211 i=15656 + InputArguments i=68 i=16210 @@ -10740,7 +11680,6 @@ -1 - @@ -10748,12 +11687,14 @@ + RemoveEndpoint i=16213 i=15656 + InputArguments i=68 i=16212 @@ -10772,7 +11713,6 @@ -1 - @@ -10780,6 +11720,7 @@ + Observer i=16214 i=16215 @@ -10797,42 +11738,49 @@ + Identities i=68 i=15668 + Applications i=68 i=15668 + ApplicationsExclude i=68 i=15668 + Endpoints i=68 i=15668 + EndpointsExclude i=68 i=15668 + AddIdentity i=15673 i=15668 + InputArguments i=68 i=15672 @@ -10851,7 +11799,6 @@ -1 - @@ -10859,12 +11806,14 @@ + RemoveIdentity i=15675 i=15668 + InputArguments i=68 i=15674 @@ -10883,7 +11832,6 @@ -1 - @@ -10891,12 +11839,14 @@ + AddApplication i=16218 i=15668 + InputArguments i=68 i=16217 @@ -10915,7 +11865,6 @@ -1 - @@ -10923,12 +11872,14 @@ + RemoveApplication i=16220 i=15668 + InputArguments i=68 i=16219 @@ -10947,7 +11898,6 @@ -1 - @@ -10955,12 +11905,14 @@ + AddEndpoint i=16222 i=15668 + InputArguments i=68 i=16221 @@ -10979,7 +11931,6 @@ -1 - @@ -10987,12 +11938,14 @@ + RemoveEndpoint i=16224 i=15668 + InputArguments i=68 i=16223 @@ -11011,7 +11964,6 @@ -1 - @@ -11019,6 +11971,7 @@ + Operator i=16225 i=16226 @@ -11036,42 +11989,49 @@ + Identities i=68 i=15680 + Applications i=68 i=15680 + ApplicationsExclude i=68 i=15680 + Endpoints i=68 i=15680 + EndpointsExclude i=68 i=15680 + AddIdentity i=15685 i=15680 + InputArguments i=68 i=15684 @@ -11090,7 +12050,6 @@ -1 - @@ -11098,12 +12057,14 @@ + RemoveIdentity i=15687 i=15680 + InputArguments i=68 i=15686 @@ -11122,7 +12083,6 @@ -1 - @@ -11130,12 +12090,14 @@ + AddApplication i=16229 i=15680 + InputArguments i=68 i=16228 @@ -11154,7 +12116,6 @@ -1 - @@ -11162,12 +12123,14 @@ + RemoveApplication i=16231 i=15680 + InputArguments i=68 i=16230 @@ -11186,7 +12149,6 @@ -1 - @@ -11194,12 +12156,14 @@ + AddEndpoint i=16233 i=15680 + InputArguments i=68 i=16232 @@ -11218,7 +12182,6 @@ -1 - @@ -11226,12 +12189,14 @@ + RemoveEndpoint i=16235 i=15680 + InputArguments i=68 i=16234 @@ -11250,7 +12215,6 @@ -1 - @@ -11258,6 +12222,7 @@ + Engineer i=16236 i=16237 @@ -11275,42 +12240,49 @@ + Identities i=68 i=16036 + Applications i=68 i=16036 + ApplicationsExclude i=68 i=16036 + Endpoints i=68 i=16036 + EndpointsExclude i=68 i=16036 + AddIdentity i=16042 i=16036 + InputArguments i=68 i=16041 @@ -11329,7 +12301,6 @@ -1 - @@ -11337,12 +12308,14 @@ + RemoveIdentity i=16044 i=16036 + InputArguments i=68 i=16043 @@ -11361,7 +12334,6 @@ -1 - @@ -11369,12 +12341,14 @@ + AddApplication i=16240 i=16036 + InputArguments i=68 i=16239 @@ -11393,7 +12367,6 @@ -1 - @@ -11401,12 +12374,14 @@ + RemoveApplication i=16242 i=16036 + InputArguments i=68 i=16241 @@ -11425,7 +12400,6 @@ -1 - @@ -11433,12 +12407,14 @@ + AddEndpoint i=16244 i=16036 + InputArguments i=68 i=16243 @@ -11457,7 +12433,6 @@ -1 - @@ -11465,12 +12440,14 @@ + RemoveEndpoint i=16246 i=16036 + InputArguments i=68 i=16245 @@ -11489,7 +12466,6 @@ -1 - @@ -11497,6 +12473,7 @@ + Supervisor i=16247 i=16248 @@ -11514,42 +12491,49 @@ + Identities i=68 i=15692 + Applications i=68 i=15692 + ApplicationsExclude i=68 i=15692 + Endpoints i=68 i=15692 + EndpointsExclude i=68 i=15692 + AddIdentity i=15697 i=15692 + InputArguments i=68 i=15696 @@ -11568,7 +12552,6 @@ -1 - @@ -11576,12 +12559,14 @@ + RemoveIdentity i=15699 i=15692 + InputArguments i=68 i=15698 @@ -11600,7 +12585,6 @@ -1 - @@ -11608,12 +12592,14 @@ + AddApplication i=16251 i=15692 + InputArguments i=68 i=16250 @@ -11632,7 +12618,6 @@ -1 - @@ -11640,12 +12625,14 @@ + RemoveApplication i=16253 i=15692 + InputArguments i=68 i=16252 @@ -11664,7 +12651,6 @@ -1 - @@ -11672,12 +12658,14 @@ + AddEndpoint i=16255 i=15692 + InputArguments i=68 i=16254 @@ -11696,7 +12684,6 @@ -1 - @@ -11704,12 +12691,14 @@ + RemoveEndpoint i=16257 i=15692 + InputArguments i=68 i=16256 @@ -11728,7 +12717,6 @@ -1 - @@ -11736,6 +12724,7 @@ + ConfigureAdmin i=16269 i=16270 @@ -11753,42 +12742,49 @@ + Identities i=68 i=15716 + Applications i=68 i=15716 + ApplicationsExclude i=68 i=15716 + Endpoints i=68 i=15716 + EndpointsExclude i=68 i=15716 + AddIdentity i=15721 i=15716 + InputArguments i=68 i=15720 @@ -11807,7 +12803,6 @@ -1 - @@ -11815,12 +12810,14 @@ + RemoveIdentity i=15723 i=15716 + InputArguments i=68 i=15722 @@ -11839,7 +12836,6 @@ -1 - @@ -11847,12 +12843,14 @@ + AddApplication i=16273 i=15716 + InputArguments i=68 i=16272 @@ -11871,7 +12869,6 @@ -1 - @@ -11879,12 +12876,14 @@ + RemoveApplication i=16275 i=15716 + InputArguments i=68 i=16274 @@ -11903,7 +12902,6 @@ -1 - @@ -11911,12 +12909,14 @@ + AddEndpoint i=16277 i=15716 + InputArguments i=68 i=16276 @@ -11935,7 +12935,6 @@ -1 - @@ -11943,12 +12942,14 @@ + RemoveEndpoint i=16279 i=15716 + InputArguments i=68 i=16278 @@ -11967,7 +12968,6 @@ -1 - @@ -11975,6 +12975,7 @@ + SecurityAdmin i=16258 i=16259 @@ -11992,42 +12993,49 @@ + Identities i=68 i=15704 + Applications i=68 i=15704 + ApplicationsExclude i=68 i=15704 + Endpoints i=68 i=15704 + EndpointsExclude i=68 i=15704 + AddIdentity i=15709 i=15704 + InputArguments i=68 i=15708 @@ -12046,7 +13054,6 @@ -1 - @@ -12054,12 +13061,14 @@ + RemoveIdentity i=15711 i=15704 + InputArguments i=68 i=15710 @@ -12078,7 +13087,6 @@ -1 - @@ -12086,12 +13094,14 @@ + AddApplication i=16262 i=15704 + InputArguments i=68 i=16261 @@ -12110,7 +13120,6 @@ -1 - @@ -12118,12 +13127,14 @@ + RemoveApplication i=16264 i=15704 + InputArguments i=68 i=16263 @@ -12142,7 +13153,6 @@ -1 - @@ -12150,12 +13160,14 @@ + AddEndpoint i=16266 i=15704 + InputArguments i=68 i=16265 @@ -12174,7 +13186,6 @@ -1 - @@ -12182,12 +13193,14 @@ + RemoveEndpoint i=16268 i=15704 + InputArguments i=68 i=16267 @@ -12206,7 +13219,6 @@ -1 - @@ -12214,12 +13226,14 @@ + DictionaryEntryType i=17590 i=58 + <DictionaryEntryName> i=17589 i=11508 @@ -12227,6 +13241,7 @@ + DictionaryFolderType i=17592 i=17593 @@ -12234,6 +13249,7 @@ + <DictionaryFolderName> i=17591 i=11508 @@ -12241,6 +13257,7 @@ + <DictionaryEntryName> i=17589 i=11508 @@ -12248,45 +13265,53 @@ + Dictionaries i=2253 i=17591 + HasDictionaryEntry i=32 DictionaryEntryOf + IrdiDictionaryEntryType i=17589 + UriDictionaryEntryType i=17589 + BaseInterfaceType i=58 + HasInterface i=32 InterfaceOf + HasAddIn i=32 AddInOf + DataItemType i=2366 i=2367 @@ -12294,6 +13319,7 @@ + Definition i=68 i=80 @@ -12301,6 +13327,7 @@ + ValuePrecision i=68 i=80 @@ -12308,6 +13335,7 @@ + BaseAnalogType i=17567 i=17568 @@ -12316,6 +13344,7 @@ + InstrumentRange i=68 i=80 @@ -12323,6 +13352,7 @@ + EURange i=68 i=80 @@ -12330,6 +13360,7 @@ + EngineeringUnits i=68 i=80 @@ -12337,12 +13368,14 @@ + AnalogItemType i=2369 i=15318 + EURange i=68 i=78 @@ -12350,12 +13383,14 @@ + AnalogUnitType i=17502 i=15318 + EngineeringUnits i=68 i=78 @@ -12363,12 +13398,14 @@ + AnalogUnitRangeType i=17575 i=2368 + EngineeringUnits i=68 i=78 @@ -12376,11 +13413,13 @@ + DiscreteItemType i=2365 + TwoStateDiscreteType i=2374 i=2375 @@ -12388,6 +13427,7 @@ + FalseState i=68 i=78 @@ -12395,6 +13435,7 @@ + TrueState i=68 i=78 @@ -12402,12 +13443,14 @@ + MultiStateDiscreteType i=2377 i=2372 + EnumStrings i=68 i=78 @@ -12415,6 +13458,7 @@ + MultiStateValueDiscreteType i=11241 i=11461 @@ -12422,6 +13466,7 @@ + EnumValues i=68 i=78 @@ -12429,6 +13474,7 @@ + ValueAsText i=68 i=78 @@ -12436,6 +13482,7 @@ + ArrayItemType i=12024 i=12025 @@ -12446,6 +13493,7 @@ + InstrumentRange i=68 i=80 @@ -12453,6 +13501,7 @@ + EURange i=68 i=78 @@ -12460,6 +13509,7 @@ + EngineeringUnits i=68 i=78 @@ -12467,6 +13517,7 @@ + Title i=68 i=78 @@ -12474,6 +13525,7 @@ + AxisScaleType i=68 i=78 @@ -12481,12 +13533,14 @@ + YArrayItemType i=12037 i=12021 + XAxisDefinition i=68 i=78 @@ -12494,12 +13548,14 @@ + XYArrayItemType i=12046 i=12021 + XAxisDefinition i=68 i=78 @@ -12507,6 +13563,7 @@ + ImageItemType i=12055 i=12056 @@ -12514,6 +13571,7 @@ + XAxisDefinition i=68 i=78 @@ -12521,6 +13579,7 @@ + YAxisDefinition i=68 i=78 @@ -12528,6 +13587,7 @@ + CubeItemType i=12065 i=12066 @@ -12536,6 +13596,7 @@ + XAxisDefinition i=68 i=78 @@ -12543,6 +13604,7 @@ + YAxisDefinition i=68 i=78 @@ -12550,6 +13612,7 @@ + ZAxisDefinition i=68 i=78 @@ -12557,12 +13620,14 @@ + NDimensionArrayItemType i=12076 i=12021 + AxisDefinition i=68 i=78 @@ -12570,6 +13635,7 @@ + TwoStateVariableType i=8996 i=9000 @@ -12580,6 +13646,7 @@ + Id i=68 i=78 @@ -12587,6 +13654,7 @@ + TransitionTime i=68 i=80 @@ -12594,6 +13662,7 @@ + EffectiveTransitionTime i=68 i=80 @@ -12601,6 +13670,7 @@ + TrueState i=68 i=80 @@ -12608,6 +13678,7 @@ + FalseState i=68 i=80 @@ -12615,12 +13686,14 @@ + ConditionVariableType i=9003 i=63 + SourceTimestamp i=68 i=78 @@ -12628,30 +13701,35 @@ + HasTrueSubState i=32 IsTrueSubStateOf + HasFalseSubState i=32 IsFalseSubStateOf + HasAlarmSuppressionGroup i=47 IsAlarmSuppressionGroupOf + AlarmGroupMember i=35 MemberOfAlarmGroup + ConditionType i=11112 i=11113 @@ -12674,6 +13752,7 @@ + ConditionClassId i=68 i=78 @@ -12681,6 +13760,7 @@ + ConditionClassName i=68 i=78 @@ -12688,6 +13768,7 @@ + ConditionSubClassId i=68 i=80 @@ -12695,6 +13776,7 @@ + ConditionSubClassName i=68 i=80 @@ -12702,6 +13784,7 @@ + ConditionName i=68 i=78 @@ -12709,6 +13792,7 @@ + BranchId i=68 i=78 @@ -12716,6 +13800,7 @@ + Retain i=68 i=78 @@ -12723,6 +13808,7 @@ + EnabledState i=9012 i=9015 @@ -12736,6 +13822,7 @@ + Id i=68 i=78 @@ -12743,6 +13830,7 @@ + EffectiveDisplayName i=68 i=80 @@ -12750,6 +13838,7 @@ + TransitionTime i=68 i=80 @@ -12757,6 +13846,7 @@ + EffectiveTransitionTime i=68 i=80 @@ -12764,6 +13854,7 @@ + TrueState i=68 i=80 @@ -12777,6 +13868,7 @@ + FalseState i=68 i=80 @@ -12790,6 +13882,7 @@ + Quality i=9021 i=9002 @@ -12798,6 +13891,7 @@ + SourceTimestamp i=68 i=78 @@ -12805,6 +13899,7 @@ + LastSeverity i=9023 i=9002 @@ -12813,6 +13908,7 @@ + SourceTimestamp i=68 i=78 @@ -12820,6 +13916,7 @@ + Comment i=9025 i=9002 @@ -12828,6 +13925,7 @@ + SourceTimestamp i=68 i=78 @@ -12835,6 +13933,7 @@ + ClientUserId i=68 i=78 @@ -12842,6 +13941,7 @@ + Disable i=2803 i=78 @@ -12849,6 +13949,7 @@ + Enable i=2803 i=78 @@ -12856,6 +13957,7 @@ + AddComment i=9030 i=2829 @@ -12864,6 +13966,7 @@ + InputArguments i=68 i=78 @@ -12915,6 +14018,7 @@ + ConditionRefresh i=3876 i=2787 @@ -12923,6 +14027,7 @@ + InputArguments i=68 i=78 @@ -12954,6 +14059,7 @@ + ConditionRefresh2 i=12913 i=2787 @@ -12962,6 +14068,7 @@ + InputArguments i=68 i=78 @@ -13013,6 +14120,7 @@ + DialogConditionType i=9035 i=9055 @@ -13027,6 +14135,7 @@ + EnabledState i=9036 i=9055 @@ -13036,6 +14145,7 @@ + Id i=68 i=78 @@ -13043,6 +14153,7 @@ + DialogState i=9056 i=9060 @@ -13055,6 +14166,7 @@ + Id i=68 i=78 @@ -13062,6 +14174,7 @@ + TransitionTime i=68 i=80 @@ -13069,6 +14182,7 @@ + TrueState i=68 i=80 @@ -13082,6 +14196,7 @@ + FalseState i=68 i=80 @@ -13095,6 +14210,7 @@ + Prompt i=68 i=78 @@ -13102,6 +14218,7 @@ + ResponseOptionSet i=68 i=78 @@ -13109,6 +14226,7 @@ + DefaultResponse i=68 i=78 @@ -13116,6 +14234,7 @@ + OkResponse i=68 i=78 @@ -13123,6 +14242,7 @@ + CancelResponse i=68 i=78 @@ -13130,6 +14250,7 @@ + LastResponse i=68 i=78 @@ -13137,6 +14258,7 @@ + Respond i=9070 i=8927 @@ -13145,6 +14267,7 @@ + InputArguments i=68 i=78 @@ -13176,6 +14299,7 @@ + AcknowledgeableConditionType i=9073 i=9093 @@ -13186,6 +14310,7 @@ + EnabledState i=9074 i=9093 @@ -13196,6 +14321,7 @@ + Id i=68 i=78 @@ -13203,6 +14329,7 @@ + AckedState i=9094 i=9098 @@ -13215,6 +14342,7 @@ + Id i=68 i=78 @@ -13222,6 +14350,7 @@ + TransitionTime i=68 i=80 @@ -13229,6 +14358,7 @@ + TrueState i=68 i=80 @@ -13242,6 +14372,7 @@ + FalseState i=68 i=80 @@ -13255,6 +14386,7 @@ + ConfirmedState i=9103 i=9107 @@ -13267,6 +14399,7 @@ + Id i=68 i=78 @@ -13274,6 +14407,7 @@ + TransitionTime i=68 i=80 @@ -13281,6 +14415,7 @@ + TrueState i=68 i=80 @@ -13294,6 +14429,7 @@ + FalseState i=68 i=80 @@ -13307,6 +14443,7 @@ + Acknowledge i=9112 i=8944 @@ -13315,6 +14452,7 @@ + InputArguments i=68 i=78 @@ -13366,6 +14504,7 @@ + Confirm i=9114 i=8961 @@ -13374,6 +14513,7 @@ + InputArguments i=68 i=78 @@ -13425,6 +14565,7 @@ + AlarmConditionType i=9118 i=9160 @@ -13455,6 +14596,7 @@ + EnabledState i=9119 i=9160 @@ -13466,6 +14608,7 @@ + Id i=68 i=78 @@ -13473,6 +14616,7 @@ + ActiveState i=9161 i=9164 @@ -13487,6 +14631,7 @@ + Id i=68 i=78 @@ -13494,6 +14639,7 @@ + EffectiveDisplayName i=68 i=80 @@ -13501,6 +14647,7 @@ + TransitionTime i=68 i=80 @@ -13508,6 +14655,7 @@ + EffectiveTransitionTime i=68 i=80 @@ -13515,6 +14663,7 @@ + TrueState i=68 i=80 @@ -13528,6 +14677,7 @@ + FalseState i=68 i=80 @@ -13541,6 +14691,7 @@ + InputNode i=68 i=78 @@ -13548,6 +14699,7 @@ + SuppressedState i=9170 i=9174 @@ -13560,6 +14712,7 @@ + Id i=68 i=78 @@ -13567,6 +14720,7 @@ + TransitionTime i=68 i=80 @@ -13574,6 +14728,7 @@ + TrueState i=68 i=80 @@ -13587,6 +14742,7 @@ + FalseState i=68 i=80 @@ -13600,6 +14756,7 @@ + OutOfServiceState i=16372 i=16376 @@ -13611,6 +14768,7 @@ + Id i=68 i=78 @@ -13618,6 +14776,7 @@ + TransitionTime i=68 i=80 @@ -13625,6 +14784,7 @@ + TrueState i=68 i=80 @@ -13638,6 +14798,7 @@ + FalseState i=68 i=80 @@ -13651,6 +14812,7 @@ + ShelvingState i=9179 i=9184 @@ -13665,6 +14827,7 @@ + CurrentState i=9180 i=2760 @@ -13673,6 +14836,7 @@ + Id i=68 i=78 @@ -13680,6 +14844,7 @@ + LastTransition i=9185 i=9188 @@ -13689,6 +14854,7 @@ + Id i=68 i=78 @@ -13696,6 +14862,7 @@ + TransitionTime i=68 i=80 @@ -13703,6 +14870,7 @@ + UnshelveTime i=68 i=78 @@ -13710,6 +14878,7 @@ + TimedShelve i=9214 i=11093 @@ -13718,6 +14887,7 @@ + InputArguments i=68 i=78 @@ -13749,6 +14919,7 @@ + Unshelve i=11093 i=78 @@ -13756,6 +14927,7 @@ + OneShotShelve i=11093 i=78 @@ -13763,6 +14935,7 @@ + SuppressedOrShelved i=68 i=78 @@ -13770,6 +14943,7 @@ + MaxTimeShelved i=68 i=80 @@ -13777,6 +14951,7 @@ + AudibleEnabled i=68 i=80 @@ -13784,6 +14959,7 @@ + AudibleSound i=17986 i=80 @@ -13791,6 +14967,7 @@ + SilenceState i=16381 i=16385 @@ -13802,6 +14979,7 @@ + Id i=68 i=78 @@ -13809,6 +14987,7 @@ + TransitionTime i=68 i=80 @@ -13816,6 +14995,7 @@ + TrueState i=68 i=80 @@ -13829,6 +15009,7 @@ + FalseState i=68 i=80 @@ -13842,6 +15023,7 @@ + OnDelay i=68 i=80 @@ -13849,6 +15031,7 @@ + OffDelay i=68 i=80 @@ -13856,6 +15039,7 @@ + FirstInGroupFlag i=63 i=80 @@ -13863,6 +15047,7 @@ + FirstInGroup i=16405 i=80 @@ -13870,6 +15055,7 @@ + LatchedState i=18191 i=18195 @@ -13881,6 +15067,7 @@ + Id i=68 i=78 @@ -13888,6 +15075,7 @@ + TransitionTime i=68 i=80 @@ -13895,6 +15083,7 @@ + TrueState i=68 i=80 @@ -13908,6 +15097,7 @@ + FalseState i=68 i=80 @@ -13921,6 +15111,7 @@ + <AlarmGroup> i=16405 i=11508 @@ -13928,6 +15119,7 @@ + ReAlarmTime i=68 i=80 @@ -13935,6 +15127,7 @@ + ReAlarmRepeatCount i=63 i=80 @@ -13942,6 +15135,7 @@ + Silence i=17242 i=80 @@ -13949,6 +15143,7 @@ + Suppress i=17225 i=80 @@ -13956,6 +15151,7 @@ + Unsuppress i=17225 i=80 @@ -13963,6 +15159,7 @@ + RemoveFromService i=17259 i=80 @@ -13970,6 +15167,7 @@ + PlaceInService i=17259 i=80 @@ -13977,6 +15175,7 @@ + Reset i=15013 i=80 @@ -13984,12 +15183,14 @@ + AlarmGroupType i=16406 i=61 + <AlarmConditionInstance> i=16407 i=16408 @@ -14023,6 +15224,7 @@ + EventId i=68 i=78 @@ -14030,6 +15232,7 @@ + EventType i=68 i=78 @@ -14037,6 +15240,7 @@ + SourceNode i=68 i=78 @@ -14044,6 +15248,7 @@ + SourceName i=68 i=78 @@ -14051,6 +15256,7 @@ + Time i=68 i=78 @@ -14058,6 +15264,7 @@ + ReceiveTime i=68 i=78 @@ -14065,6 +15272,7 @@ + Message i=68 i=78 @@ -14072,6 +15280,7 @@ + Severity i=68 i=78 @@ -14079,6 +15288,7 @@ + ConditionClassId i=68 i=78 @@ -14086,6 +15296,7 @@ + ConditionClassName i=68 i=78 @@ -14093,6 +15304,7 @@ + ConditionName i=68 i=78 @@ -14100,6 +15312,7 @@ + BranchId i=68 i=78 @@ -14107,6 +15320,7 @@ + Retain i=68 i=78 @@ -14114,6 +15328,7 @@ + EnabledState i=16424 i=8995 @@ -14122,6 +15337,7 @@ + Id i=68 i=78 @@ -14129,6 +15345,7 @@ + Quality i=16433 i=9002 @@ -14137,6 +15354,7 @@ + SourceTimestamp i=68 i=78 @@ -14144,6 +15362,7 @@ + LastSeverity i=16435 i=9002 @@ -14152,6 +15371,7 @@ + SourceTimestamp i=68 i=78 @@ -14159,6 +15379,7 @@ + Comment i=16437 i=9002 @@ -14167,6 +15388,7 @@ + SourceTimestamp i=68 i=78 @@ -14174,6 +15396,7 @@ + ClientUserId i=68 i=78 @@ -14181,6 +15404,7 @@ + Disable i=2803 i=78 @@ -14188,6 +15412,7 @@ + Enable i=2803 i=78 @@ -14195,6 +15420,7 @@ + AddComment i=16442 i=2829 @@ -14203,6 +15429,7 @@ + InputArguments i=68 i=78 @@ -14254,6 +15481,7 @@ + AckedState i=16444 i=8995 @@ -14262,6 +15490,7 @@ + Id i=68 i=78 @@ -14269,6 +15498,7 @@ + Acknowledge i=16462 i=8944 @@ -14277,6 +15507,7 @@ + InputArguments i=68 i=78 @@ -14328,6 +15559,7 @@ + ActiveState i=16466 i=8995 @@ -14336,6 +15568,7 @@ + Id i=68 i=78 @@ -14343,6 +15576,7 @@ + InputNode i=68 i=78 @@ -14350,6 +15584,7 @@ + SuppressedOrShelved i=68 i=78 @@ -14357,6 +15592,7 @@ + ShelvedStateMachineType i=9115 i=2930 @@ -14375,6 +15611,7 @@ + UnshelveTime i=68 i=78 @@ -14382,6 +15619,7 @@ + Unshelved i=6098 i=2935 @@ -14393,6 +15631,7 @@ + StateNumber i=68 i=78 @@ -14412,6 +15651,7 @@ + StateNumber i=68 i=78 @@ -14431,6 +15671,7 @@ + StateNumber i=68 i=78 @@ -14438,6 +15679,7 @@ + UnshelvedToTimedShelved i=11322 i=2930 @@ -14449,6 +15691,7 @@ + TransitionNumber i=68 i=78 @@ -14456,6 +15699,7 @@ + UnshelvedToOneShotShelved i=11323 i=2930 @@ -14467,6 +15711,7 @@ + TransitionNumber i=68 i=78 @@ -14474,6 +15719,7 @@ + TimedShelvedToUnshelved i=11324 i=2932 @@ -14485,6 +15731,7 @@ + TransitionNumber i=68 i=78 @@ -14492,6 +15739,7 @@ + TimedShelvedToOneShotShelved i=11325 i=2932 @@ -14503,6 +15751,7 @@ + TransitionNumber i=68 i=78 @@ -14510,6 +15759,7 @@ + OneShotShelvedToUnshelved i=11326 i=2933 @@ -14521,6 +15771,7 @@ + TransitionNumber i=68 i=78 @@ -14528,6 +15779,7 @@ + OneShotShelvedToTimedShelved i=11327 i=2933 @@ -14539,6 +15791,7 @@ + TransitionNumber i=68 i=78 @@ -14546,6 +15799,7 @@ + TimedShelve i=2991 i=2935 @@ -14556,6 +15810,7 @@ + InputArguments i=68 i=78 @@ -14587,6 +15842,7 @@ + Unshelve i=2940 i=2943 @@ -14596,6 +15852,7 @@ + OneShotShelve i=2936 i=2942 @@ -14605,6 +15862,7 @@ + LimitAlarmType i=11124 i=11125 @@ -14618,6 +15876,7 @@ + HighHighLimit i=68 i=80 @@ -14625,6 +15884,7 @@ + HighLimit i=68 i=80 @@ -14632,6 +15892,7 @@ + LowLimit i=68 i=80 @@ -14639,6 +15900,7 @@ + LowLowLimit i=68 i=80 @@ -14646,6 +15908,7 @@ + BaseHighHighLimit i=68 i=80 @@ -14653,6 +15916,7 @@ + BaseHighLimit i=68 i=80 @@ -14660,6 +15924,7 @@ + BaseLowLimit i=68 i=80 @@ -14667,6 +15932,7 @@ + BaseLowLowLimit i=68 i=80 @@ -14674,6 +15940,7 @@ + ExclusiveLimitStateMachineType i=9329 i=9331 @@ -14687,6 +15954,7 @@ + HighHigh i=9330 i=9339 @@ -14696,6 +15964,7 @@ + StateNumber i=68 i=78 @@ -14703,6 +15972,7 @@ + High i=9332 i=9339 @@ -14712,6 +15982,7 @@ + StateNumber i=68 i=78 @@ -14719,6 +15990,7 @@ + Low i=9334 i=9337 @@ -14728,6 +16000,7 @@ + StateNumber i=68 i=78 @@ -14735,6 +16008,7 @@ + LowLow i=9336 i=9337 @@ -14744,6 +16018,7 @@ + StateNumber i=68 i=78 @@ -14751,6 +16026,7 @@ + LowLowToLow i=11340 i=9335 @@ -14760,6 +16036,7 @@ + TransitionNumber i=68 i=78 @@ -14767,6 +16044,7 @@ + LowToLowLow i=11341 i=9333 @@ -14776,6 +16054,7 @@ + TransitionNumber i=68 i=78 @@ -14783,6 +16062,7 @@ + HighHighToHigh i=11342 i=9329 @@ -14792,6 +16072,7 @@ + TransitionNumber i=68 i=78 @@ -14799,6 +16080,7 @@ + HighToHighHigh i=11343 i=9331 @@ -14808,6 +16090,7 @@ + TransitionNumber i=68 i=78 @@ -14815,6 +16098,7 @@ + ExclusiveLimitAlarmType i=9398 i=9455 @@ -14822,6 +16106,7 @@ + ActiveState i=9399 i=9455 @@ -14831,6 +16116,7 @@ + Id i=68 i=78 @@ -14838,6 +16124,7 @@ + LimitState i=9456 i=9461 @@ -14848,6 +16135,7 @@ + CurrentState i=9457 i=2760 @@ -14856,6 +16144,7 @@ + Id i=68 i=78 @@ -14863,6 +16152,7 @@ + LastTransition i=9462 i=9465 @@ -14872,6 +16162,7 @@ + Id i=68 i=78 @@ -14879,6 +16170,7 @@ + TransitionTime i=68 i=80 @@ -14886,6 +16178,7 @@ + NonExclusiveLimitAlarmType i=9963 i=10020 @@ -14896,6 +16189,7 @@ + ActiveState i=9964 i=10020 @@ -14908,6 +16202,7 @@ + Id i=68 i=78 @@ -14915,6 +16210,7 @@ + HighHighState i=10021 i=10025 @@ -14927,6 +16223,7 @@ + Id i=68 i=78 @@ -14934,6 +16231,7 @@ + TransitionTime i=68 i=80 @@ -14941,6 +16239,7 @@ + TrueState i=68 i=80 @@ -14954,6 +16253,7 @@ + FalseState i=68 i=80 @@ -14967,6 +16267,7 @@ + HighState i=10030 i=10034 @@ -14979,6 +16280,7 @@ + Id i=68 i=78 @@ -14986,6 +16288,7 @@ + TransitionTime i=68 i=80 @@ -14993,6 +16296,7 @@ + TrueState i=68 i=80 @@ -15006,6 +16310,7 @@ + FalseState i=68 i=80 @@ -15019,6 +16324,7 @@ + LowState i=10039 i=10043 @@ -15031,6 +16337,7 @@ + Id i=68 i=78 @@ -15038,6 +16345,7 @@ + TransitionTime i=68 i=80 @@ -15045,6 +16353,7 @@ + TrueState i=68 i=80 @@ -15058,6 +16367,7 @@ + FalseState i=68 i=80 @@ -15071,6 +16381,7 @@ + LowLowState i=10048 i=10052 @@ -15083,6 +16394,7 @@ + Id i=68 i=78 @@ -15090,6 +16402,7 @@ + TransitionTime i=68 i=80 @@ -15097,6 +16410,7 @@ + TrueState i=68 i=80 @@ -15110,6 +16424,7 @@ + FalseState i=68 i=80 @@ -15123,16 +16438,19 @@ + NonExclusiveLevelAlarmType i=9906 + ExclusiveLevelAlarmType i=9341 + NonExclusiveDeviationAlarmType i=10522 i=16776 @@ -15140,6 +16458,7 @@ + SetpointNode i=68 i=78 @@ -15147,6 +16466,7 @@ + BaseSetpointNode i=68 i=80 @@ -15154,12 +16474,14 @@ + NonExclusiveRateOfChangeAlarmType i=16858 i=9906 + EngineeringUnits i=68 i=80 @@ -15167,6 +16489,7 @@ + ExclusiveDeviationAlarmType i=9905 i=16817 @@ -15174,6 +16497,7 @@ + SetpointNode i=68 i=78 @@ -15181,6 +16505,7 @@ + BaseSetpointNode i=68 i=80 @@ -15188,12 +16513,14 @@ + ExclusiveRateOfChangeAlarmType i=16899 i=9341 + EngineeringUnits i=68 i=80 @@ -15201,17 +16528,20 @@ + DiscreteAlarmType i=2915 + OffNormalAlarmType i=11158 i=10523 + NormalState i=68 i=78 @@ -15219,26 +16549,31 @@ + SystemOffNormalAlarmType i=10637 + TripAlarmType i=10637 + InstrumentDiagnosticAlarmType i=10637 + SystemDiagnosticAlarmType i=10637 + CertificateExpirationAlarmType i=13325 i=14900 @@ -15248,6 +16583,7 @@ + ExpirationDate i=68 i=78 @@ -15255,6 +16591,7 @@ + ExpirationLimit i=68 i=80 @@ -15262,6 +16599,7 @@ + CertificateType i=68 i=78 @@ -15269,6 +16607,7 @@ + Certificate i=68 i=78 @@ -15276,6 +16615,7 @@ + DiscrepancyAlarmType i=17215 i=17216 @@ -15284,6 +16624,7 @@ + TargetValueNode i=68 i=78 @@ -15291,6 +16632,7 @@ + ExpectedTime i=68 i=78 @@ -15298,6 +16640,7 @@ + Tolerance i=68 i=80 @@ -15305,61 +16648,73 @@ + BaseConditionClassType i=58 + ProcessConditionClassType i=11163 + MaintenanceConditionClassType i=11163 + SystemConditionClassType i=11163 + SafetyConditionClassType i=11163 + HighlyManagedAlarmConditionClassType i=11163 + TrainingConditionClassType i=11163 + StatisticalConditionClassType i=11163 + TestingConditionSubClassType i=11163 + AuditConditionEventType i=2127 + AuditConditionEnableEventType i=2790 + AuditConditionCommentEventType i=17222 i=11851 @@ -15367,6 +16722,7 @@ + ConditionEventId i=68 i=78 @@ -15374,6 +16730,7 @@ + Comment i=68 i=78 @@ -15381,12 +16738,14 @@ + AuditConditionRespondEventType i=11852 i=2790 + SelectedResponse i=68 i=78 @@ -15394,6 +16753,7 @@ + AuditConditionAcknowledgeEventType i=17223 i=11853 @@ -15401,6 +16761,7 @@ + ConditionEventId i=68 i=78 @@ -15408,6 +16769,7 @@ + Comment i=68 i=78 @@ -15415,6 +16777,7 @@ + AuditConditionConfirmEventType i=17224 i=11854 @@ -15422,6 +16785,7 @@ + ConditionEventId i=68 i=78 @@ -15429,6 +16793,7 @@ + Comment i=68 i=78 @@ -15436,12 +16801,14 @@ + AuditConditionShelvingEventType i=11855 i=2790 + ShelvingTime i=68 i=80 @@ -15449,71 +16816,84 @@ + AuditConditionSuppressionEventType i=2790 + AuditConditionSilenceEventType i=2790 + AuditConditionResetEventType i=2790 + AuditConditionOutOfServiceEventType i=2790 + RefreshStartEventType i=2130 + RefreshEndEventType i=2130 + RefreshRequiredEventType i=2130 + HasCondition i=32 IsConditionOf + HasEffectDisable i=54 MayBeDisabledBy + HasEffectEnable i=54 MayBeEnabledBy + HasEffectSuppressed i=54 MayBeSuppressedBy + HasEffectUnsuppressed i=54 MayBeUnsuppressedBy + AlarmMetricsType i=17280 i=17991 @@ -15528,6 +16908,7 @@ + AlarmCount i=63 i=78 @@ -15535,6 +16916,7 @@ + StartTime i=63 i=78 @@ -15542,6 +16924,7 @@ + MaximumActiveState i=63 i=78 @@ -15549,6 +16932,7 @@ + MaximumUnAck i=63 i=78 @@ -15556,6 +16940,7 @@ + CurrentAlarmRate i=17285 i=17277 @@ -15564,6 +16949,7 @@ + Rate i=68 i=78 @@ -15571,6 +16957,7 @@ + MaximumAlarmRate i=17287 i=17277 @@ -15579,6 +16966,7 @@ + Rate i=68 i=78 @@ -15586,6 +16974,7 @@ + MaximumReAlarmCount i=63 i=78 @@ -15593,6 +16982,7 @@ + AverageAlarmRate i=17289 i=17277 @@ -15601,6 +16991,7 @@ + Rate i=68 i=78 @@ -15608,6 +16999,7 @@ + Reset i=2127 i=78 @@ -15615,12 +17007,14 @@ + AlarmRateVariableType i=17278 i=63 + Rate i=68 i=78 @@ -15628,6 +17022,7 @@ + ProgramStateMachineType i=3830 i=3835 @@ -15662,6 +17057,7 @@ + CurrentState i=3831 i=3833 @@ -15671,6 +17067,7 @@ + Id i=68 i=78 @@ -15678,6 +17075,7 @@ + Number i=68 i=78 @@ -15685,6 +17083,7 @@ + LastTransition i=3836 i=3838 @@ -15695,6 +17094,7 @@ + Id i=68 i=78 @@ -15702,6 +17102,7 @@ + Number i=68 i=78 @@ -15709,6 +17110,7 @@ + TransitionTime i=68 i=78 @@ -15716,12 +17118,14 @@ + Creatable i=68 i=2391 + Deletable i=68 i=78 @@ -15729,6 +17133,7 @@ + AutoDelete i=68 i=78 @@ -15736,6 +17141,7 @@ + RecycleCount i=68 i=78 @@ -15743,24 +17149,28 @@ + InstanceCount i=68 i=2391 + MaxInstanceCount i=68 i=2391 + MaxRecycleCount i=68 i=2391 + ProgramDiagnostic i=3840 i=3841 @@ -15780,6 +17190,7 @@ + CreateSessionId i=63 i=78 @@ -15787,6 +17198,7 @@ + CreateClientName i=63 i=78 @@ -15794,6 +17206,7 @@ + InvocationCreationTime i=63 i=78 @@ -15801,6 +17214,7 @@ + LastTransitionTime i=68 i=78 @@ -15808,6 +17222,7 @@ + LastMethodCall i=63 i=78 @@ -15815,6 +17230,7 @@ + LastMethodSessionId i=63 i=78 @@ -15822,6 +17238,7 @@ + LastMethodInputArguments i=63 i=78 @@ -15829,6 +17246,7 @@ + LastMethodOutputArguments i=63 i=78 @@ -15836,6 +17254,7 @@ + LastMethodInputValues i=63 i=78 @@ -15843,6 +17262,7 @@ + LastMethodOutputValues i=63 i=78 @@ -15850,6 +17270,7 @@ + LastMethodCallTime i=63 i=78 @@ -15857,6 +17278,7 @@ + LastMethodReturnStatus i=63 i=78 @@ -15864,6 +17286,7 @@ + FinalResultData i=58 i=80 @@ -15871,6 +17294,7 @@ + Halted i=2407 i=2408 @@ -15882,6 +17306,7 @@ + StateNumber i=68 i=78 @@ -15892,6 +17317,7 @@ + Ready i=2401 i=2408 @@ -15904,6 +17330,7 @@ + StateNumber i=68 i=78 @@ -15914,6 +17341,7 @@ + Running i=2403 i=2410 @@ -15926,6 +17354,7 @@ + StateNumber i=68 i=78 @@ -15936,6 +17365,7 @@ + Suspended i=2405 i=2416 @@ -15947,6 +17377,7 @@ + StateNumber i=68 i=78 @@ -15957,6 +17388,7 @@ + HaltedToReady i=2409 i=2406 @@ -15968,6 +17400,7 @@ + TransitionNumber i=68 i=78 @@ -15978,6 +17411,7 @@ + ReadyToRunning i=2411 i=2400 @@ -15989,6 +17423,7 @@ + TransitionNumber i=68 i=78 @@ -15999,6 +17434,7 @@ + RunningToHalted i=2413 i=2402 @@ -16010,6 +17446,7 @@ + TransitionNumber i=68 i=78 @@ -16020,6 +17457,7 @@ + RunningToReady i=2415 i=2402 @@ -16030,6 +17468,7 @@ + TransitionNumber i=68 i=78 @@ -16040,6 +17479,7 @@ + RunningToSuspended i=2417 i=2402 @@ -16051,6 +17491,7 @@ + TransitionNumber i=68 i=78 @@ -16061,6 +17502,7 @@ + SuspendedToRunning i=2419 i=2404 @@ -16072,6 +17514,7 @@ + TransitionNumber i=68 i=78 @@ -16082,6 +17525,7 @@ + SuspendedToHalted i=2421 i=2404 @@ -16093,6 +17537,7 @@ + TransitionNumber i=68 i=78 @@ -16103,6 +17548,7 @@ + SuspendedToReady i=2423 i=2404 @@ -16113,6 +17559,7 @@ + TransitionNumber i=68 i=78 @@ -16123,6 +17570,7 @@ + ReadyToHalted i=2425 i=2400 @@ -16134,6 +17582,7 @@ + TransitionNumber i=68 i=78 @@ -16144,6 +17593,7 @@ + Start i=2410 i=11508 @@ -16151,6 +17601,7 @@ + Suspend i=2416 i=11508 @@ -16158,6 +17609,7 @@ + Resume i=2418 i=11508 @@ -16165,6 +17617,7 @@ + Halt i=2412 i=2420 @@ -16174,6 +17627,7 @@ + Reset i=2408 i=11508 @@ -16181,12 +17635,14 @@ + ProgramTransitionEventType i=2379 i=2311 + IntermediateResult i=63 i=78 @@ -16194,12 +17650,14 @@ + AuditProgramTransitionEventType i=11875 i=2315 + TransitionNumber i=68 i=78 @@ -16207,12 +17665,14 @@ + ProgramTransitionAuditEventType i=3825 i=2315 + Transition i=3826 i=2767 @@ -16221,6 +17681,7 @@ + Id i=68 i=78 @@ -16228,6 +17689,7 @@ + ProgramDiagnosticType i=2381 i=2382 @@ -16243,6 +17705,7 @@ + CreateSessionId i=68 i=78 @@ -16250,6 +17713,7 @@ + CreateClientName i=68 i=78 @@ -16257,6 +17721,7 @@ + InvocationCreationTime i=68 i=78 @@ -16264,6 +17729,7 @@ + LastTransitionTime i=68 i=78 @@ -16271,6 +17737,7 @@ + LastMethodCall i=68 i=78 @@ -16278,6 +17745,7 @@ + LastMethodSessionId i=68 i=78 @@ -16285,6 +17753,7 @@ + LastMethodInputArguments i=68 i=78 @@ -16292,6 +17761,7 @@ + LastMethodOutputArguments i=68 i=78 @@ -16299,6 +17769,7 @@ + LastMethodCallTime i=68 i=78 @@ -16306,6 +17777,7 @@ + LastMethodReturnStatus i=68 i=78 @@ -16313,6 +17785,7 @@ + ProgramDiagnostic2Type i=15384 i=15385 @@ -16330,6 +17803,7 @@ + CreateSessionId i=63 i=78 @@ -16337,6 +17811,7 @@ + CreateClientName i=63 i=78 @@ -16344,6 +17819,7 @@ + InvocationCreationTime i=63 i=78 @@ -16351,6 +17827,7 @@ + LastTransitionTime i=68 i=78 @@ -16358,6 +17835,7 @@ + LastMethodCall i=63 i=78 @@ -16365,6 +17843,7 @@ + LastMethodSessionId i=63 i=78 @@ -16372,6 +17851,7 @@ + LastMethodInputArguments i=63 i=78 @@ -16379,6 +17859,7 @@ + LastMethodOutputArguments i=63 i=78 @@ -16386,6 +17867,7 @@ + LastMethodInputValues i=63 i=78 @@ -16393,6 +17875,7 @@ + LastMethodOutputValues i=63 i=78 @@ -16400,6 +17883,7 @@ + LastMethodCallTime i=63 i=78 @@ -16407,6 +17891,7 @@ + LastMethodReturnStatus i=63 i=78 @@ -16414,11 +17899,13 @@ + Annotations i=68 + HistoricalDataConfigurationType i=3059 i=11876 @@ -16434,6 +17921,7 @@ + AggregateConfiguration i=11168 i=11169 @@ -16445,6 +17933,7 @@ + TreatUncertainAsBad i=68 i=78 @@ -16452,6 +17941,7 @@ + PercentDataBad i=68 i=78 @@ -16459,6 +17949,7 @@ + PercentDataGood i=68 i=78 @@ -16466,6 +17957,7 @@ + UseSlopedExtrapolation i=68 i=78 @@ -16473,6 +17965,7 @@ + AggregateFunctions i=61 i=80 @@ -16480,6 +17973,7 @@ + Stepped i=68 i=78 @@ -16487,6 +17981,7 @@ + Definition i=68 i=80 @@ -16494,6 +17989,7 @@ + MaxTimeInterval i=68 i=80 @@ -16501,6 +17997,7 @@ + MinTimeInterval i=68 i=80 @@ -16508,6 +18005,7 @@ + ExceptionDeviation i=68 i=80 @@ -16515,6 +18013,7 @@ + ExceptionDeviationFormat i=68 i=80 @@ -16522,6 +18021,7 @@ + StartOfArchive i=68 i=80 @@ -16529,6 +18029,7 @@ + StartOfOnlineArchive i=68 i=80 @@ -16536,6 +18037,7 @@ + HA Configuration i=11203 i=11208 @@ -16543,6 +18045,7 @@ + AggregateConfiguration i=11204 i=11205 @@ -16553,41 +18056,48 @@ + TreatUncertainAsBad i=68 i=11203 + PercentDataBad i=68 i=11203 + PercentDataGood i=68 i=11203 + UseSlopedExtrapolation i=68 i=11203 + Stepped i=68 i=11202 + HistoricalEventFilter i=68 + HistoryServerCapabilitiesType i=2331 i=2332 @@ -16608,6 +18118,7 @@ + AccessHistoryDataCapability i=68 i=78 @@ -16615,6 +18126,7 @@ + AccessHistoryEventsCapability i=68 i=78 @@ -16622,6 +18134,7 @@ + MaxReturnDataValues i=68 i=78 @@ -16629,6 +18142,7 @@ + MaxReturnEventValues i=68 i=78 @@ -16636,6 +18150,7 @@ + InsertDataCapability i=68 i=78 @@ -16643,6 +18158,7 @@ + ReplaceDataCapability i=68 i=78 @@ -16650,6 +18166,7 @@ + UpdateDataCapability i=68 i=78 @@ -16657,6 +18174,7 @@ + DeleteRawCapability i=68 i=78 @@ -16664,6 +18182,7 @@ + DeleteAtTimeCapability i=68 i=78 @@ -16671,6 +18190,7 @@ + InsertEventCapability i=68 i=78 @@ -16678,6 +18198,7 @@ + ReplaceEventCapability i=68 i=78 @@ -16685,6 +18206,7 @@ + UpdateEventCapability i=68 i=78 @@ -16692,6 +18214,7 @@ + DeleteEventCapability i=68 i=78 @@ -16699,6 +18222,7 @@ + InsertAnnotationCapability i=68 i=78 @@ -16706,6 +18230,7 @@ + AggregateFunctions i=61 i=78 @@ -16713,6 +18238,7 @@ + AuditHistoryEventUpdateEventType i=3025 i=3028 @@ -16723,6 +18249,7 @@ + UpdatedNode i=68 i=78 @@ -16730,6 +18257,7 @@ + PerformInsertReplace i=68 i=78 @@ -16737,6 +18265,7 @@ + Filter i=68 i=78 @@ -16744,6 +18273,7 @@ + NewValues i=68 i=78 @@ -16751,6 +18281,7 @@ + OldValues i=68 i=78 @@ -16758,6 +18289,7 @@ + AuditHistoryValueUpdateEventType i=3026 i=3031 @@ -16767,6 +18299,7 @@ + UpdatedNode i=68 i=78 @@ -16774,6 +18307,7 @@ + PerformInsertReplace i=68 i=78 @@ -16781,6 +18315,7 @@ + NewValues i=68 i=78 @@ -16788,6 +18323,7 @@ + OldValues i=68 i=78 @@ -16795,12 +18331,14 @@ + AuditHistoryDeleteEventType i=3027 i=2104 + UpdatedNode i=68 i=78 @@ -16808,6 +18346,7 @@ + AuditHistoryRawModifyDeleteEventType i=3015 i=3016 @@ -16817,6 +18356,7 @@ + IsDeleteModified i=68 i=78 @@ -16824,6 +18364,7 @@ + StartTime i=68 i=78 @@ -16831,6 +18372,7 @@ + EndTime i=68 i=78 @@ -16838,6 +18380,7 @@ + OldValues i=68 i=78 @@ -16845,6 +18388,7 @@ + AuditHistoryAtTimeDeleteEventType i=3020 i=3021 @@ -16852,6 +18396,7 @@ + ReqTimes i=68 i=78 @@ -16859,6 +18404,7 @@ + OldValues i=68 i=78 @@ -16866,6 +18412,7 @@ + AuditHistoryEventDeleteEventType i=3023 i=3024 @@ -16873,6 +18420,7 @@ + EventIds i=68 i=78 @@ -16880,6 +18428,7 @@ + OldValues i=68 i=78 @@ -16887,6 +18436,7 @@ + TrustListType i=12542 i=12543 @@ -16897,6 +18447,7 @@ + LastUpdateTime i=68 i=78 @@ -16904,6 +18455,7 @@ + OpenWithMasks i=12544 i=12545 @@ -16912,6 +18464,7 @@ + InputArguments i=68 i=78 @@ -16931,7 +18484,6 @@ -1 - @@ -16939,6 +18491,7 @@ + OutputArguments i=68 i=78 @@ -16958,7 +18511,6 @@ -1 - @@ -16966,6 +18518,7 @@ + CloseAndUpdate i=12705 i=12547 @@ -16974,6 +18527,7 @@ + InputArguments i=68 i=78 @@ -16993,7 +18547,6 @@ -1 - @@ -17001,6 +18554,7 @@ + OutputArguments i=68 i=78 @@ -17020,7 +18574,6 @@ -1 - @@ -17028,6 +18581,7 @@ + AddCertificate i=12549 i=80 @@ -17035,6 +18589,7 @@ + InputArguments i=68 i=78 @@ -17054,7 +18609,6 @@ -1 - @@ -17070,7 +18624,6 @@ -1 - @@ -17078,6 +18631,7 @@ + RemoveCertificate i=12551 i=80 @@ -17085,6 +18639,7 @@ + InputArguments i=68 i=78 @@ -17104,7 +18659,6 @@ -1 - @@ -17120,7 +18674,6 @@ -1 - @@ -17128,11 +18681,12 @@ + TrustListMasks i=12553 i=29 - + @@ -17142,6 +18696,7 @@ + EnumValues i=68 i=78 @@ -17161,7 +18716,6 @@ None - @@ -17177,7 +18731,6 @@ TrustedCertificates - @@ -17193,7 +18746,6 @@ TrustedCrls - @@ -17209,7 +18761,6 @@ IssuerCertificates - @@ -17225,7 +18776,6 @@ IssuerCrls - @@ -17241,7 +18791,6 @@ All - @@ -17249,10 +18798,11 @@ + TrustListDataType i=22 - + @@ -17261,6 +18811,7 @@ + CertificateGroupType i=13599 i=13631 @@ -17268,6 +18819,7 @@ + TrustList i=13600 i=13601 @@ -17287,6 +18839,7 @@ + Size i=68 i=78 @@ -17294,6 +18847,7 @@ + Writable i=68 i=78 @@ -17301,6 +18855,7 @@ + UserWritable i=68 i=78 @@ -17308,6 +18863,7 @@ + OpenCount i=68 i=78 @@ -17315,6 +18871,7 @@ + Open i=13606 i=13607 @@ -17323,6 +18880,7 @@ + InputArguments i=68 i=78 @@ -17342,7 +18900,6 @@ -1 - @@ -17350,6 +18907,7 @@ + OutputArguments i=68 i=78 @@ -17369,7 +18927,6 @@ -1 - @@ -17377,6 +18934,7 @@ + Close i=13609 i=78 @@ -17384,6 +18942,7 @@ + InputArguments i=68 i=78 @@ -17403,7 +18962,6 @@ -1 - @@ -17411,6 +18969,7 @@ + Read i=13611 i=13612 @@ -17419,6 +18978,7 @@ + InputArguments i=68 i=78 @@ -17438,7 +18998,6 @@ -1 - @@ -17454,7 +19013,6 @@ -1 - @@ -17462,6 +19020,7 @@ + OutputArguments i=68 i=78 @@ -17481,7 +19040,6 @@ -1 - @@ -17489,6 +19047,7 @@ + Write i=13614 i=78 @@ -17496,6 +19055,7 @@ + InputArguments i=68 i=78 @@ -17515,7 +19075,6 @@ -1 - @@ -17531,7 +19090,6 @@ -1 - @@ -17539,6 +19097,7 @@ + GetPosition i=13616 i=13617 @@ -17547,6 +19106,7 @@ + InputArguments i=68 i=78 @@ -17566,7 +19126,6 @@ -1 - @@ -17574,6 +19133,7 @@ + OutputArguments i=68 i=78 @@ -17593,7 +19153,6 @@ -1 - @@ -17601,6 +19160,7 @@ + SetPosition i=13619 i=78 @@ -17608,6 +19168,7 @@ + InputArguments i=68 i=78 @@ -17627,7 +19188,6 @@ -1 - @@ -17643,7 +19203,6 @@ -1 - @@ -17651,6 +19210,7 @@ + LastUpdateTime i=68 i=78 @@ -17658,6 +19218,7 @@ + OpenWithMasks i=13622 i=13623 @@ -17666,6 +19227,7 @@ + InputArguments i=68 i=78 @@ -17685,7 +19247,6 @@ -1 - @@ -17693,6 +19254,7 @@ + OutputArguments i=68 i=78 @@ -17712,7 +19274,6 @@ -1 - @@ -17720,6 +19281,7 @@ + CertificateTypes i=68 i=78 @@ -17727,6 +19289,7 @@ + CertificateGroupFolderType i=13814 i=13848 @@ -17736,6 +19299,7 @@ + DefaultApplicationGroup i=13815 i=13847 @@ -17745,6 +19309,7 @@ + TrustList i=13816 i=13817 @@ -17764,6 +19329,7 @@ + Size i=68 i=78 @@ -17771,6 +19337,7 @@ + Writable i=68 i=78 @@ -17778,6 +19345,7 @@ + UserWritable i=68 i=78 @@ -17785,6 +19353,7 @@ + OpenCount i=68 i=78 @@ -17792,6 +19361,7 @@ + Open i=13822 i=13823 @@ -17800,6 +19370,7 @@ + InputArguments i=68 i=78 @@ -17819,7 +19390,6 @@ -1 - @@ -17827,6 +19397,7 @@ + OutputArguments i=68 i=78 @@ -17846,7 +19417,6 @@ -1 - @@ -17854,6 +19424,7 @@ + Close i=13825 i=78 @@ -17861,6 +19432,7 @@ + InputArguments i=68 i=78 @@ -17880,7 +19452,6 @@ -1 - @@ -17888,6 +19459,7 @@ + Read i=13827 i=13828 @@ -17896,6 +19468,7 @@ + InputArguments i=68 i=78 @@ -17915,7 +19488,6 @@ -1 - @@ -17931,7 +19503,6 @@ -1 - @@ -17939,6 +19510,7 @@ + OutputArguments i=68 i=78 @@ -17958,7 +19530,6 @@ -1 - @@ -17966,6 +19537,7 @@ + Write i=13830 i=78 @@ -17973,6 +19545,7 @@ + InputArguments i=68 i=78 @@ -17992,7 +19565,6 @@ -1 - @@ -18008,7 +19580,6 @@ -1 - @@ -18016,6 +19587,7 @@ + GetPosition i=13832 i=13833 @@ -18024,6 +19596,7 @@ + InputArguments i=68 i=78 @@ -18043,7 +19616,6 @@ -1 - @@ -18051,6 +19623,7 @@ + OutputArguments i=68 i=78 @@ -18070,7 +19643,6 @@ -1 - @@ -18078,6 +19650,7 @@ + SetPosition i=13835 i=78 @@ -18085,6 +19658,7 @@ + InputArguments i=68 i=78 @@ -18104,7 +19678,6 @@ -1 - @@ -18120,7 +19693,6 @@ -1 - @@ -18128,6 +19700,7 @@ + LastUpdateTime i=68 i=78 @@ -18135,6 +19708,7 @@ + OpenWithMasks i=13838 i=13839 @@ -18143,6 +19717,7 @@ + InputArguments i=68 i=78 @@ -18162,7 +19737,6 @@ -1 - @@ -18170,6 +19744,7 @@ + OutputArguments i=68 i=78 @@ -18189,7 +19764,6 @@ -1 - @@ -18197,6 +19771,7 @@ + CertificateTypes i=68 i=78 @@ -18204,6 +19779,7 @@ + DefaultHttpsGroup i=13849 i=13881 @@ -18213,6 +19789,7 @@ + TrustList i=13850 i=13851 @@ -18232,6 +19809,7 @@ + Size i=68 i=78 @@ -18239,6 +19817,7 @@ + Writable i=68 i=78 @@ -18246,6 +19825,7 @@ + UserWritable i=68 i=78 @@ -18253,6 +19833,7 @@ + OpenCount i=68 i=78 @@ -18260,6 +19841,7 @@ + Open i=13856 i=13857 @@ -18268,6 +19850,7 @@ + InputArguments i=68 i=78 @@ -18287,7 +19870,6 @@ -1 - @@ -18295,6 +19877,7 @@ + OutputArguments i=68 i=78 @@ -18314,7 +19897,6 @@ -1 - @@ -18322,6 +19904,7 @@ + Close i=13859 i=78 @@ -18329,6 +19912,7 @@ + InputArguments i=68 i=78 @@ -18348,7 +19932,6 @@ -1 - @@ -18356,6 +19939,7 @@ + Read i=13861 i=13862 @@ -18364,6 +19948,7 @@ + InputArguments i=68 i=78 @@ -18383,7 +19968,6 @@ -1 - @@ -18399,7 +19983,6 @@ -1 - @@ -18407,6 +19990,7 @@ + OutputArguments i=68 i=78 @@ -18426,7 +20010,6 @@ -1 - @@ -18434,6 +20017,7 @@ + Write i=13864 i=78 @@ -18441,6 +20025,7 @@ + InputArguments i=68 i=78 @@ -18460,7 +20045,6 @@ -1 - @@ -18476,7 +20060,6 @@ -1 - @@ -18484,6 +20067,7 @@ + GetPosition i=13866 i=13867 @@ -18492,6 +20076,7 @@ + InputArguments i=68 i=78 @@ -18511,7 +20096,6 @@ -1 - @@ -18519,6 +20103,7 @@ + OutputArguments i=68 i=78 @@ -18538,7 +20123,6 @@ -1 - @@ -18546,6 +20130,7 @@ + SetPosition i=13869 i=78 @@ -18553,6 +20138,7 @@ + InputArguments i=68 i=78 @@ -18572,7 +20158,6 @@ -1 - @@ -18588,7 +20173,6 @@ -1 - @@ -18596,6 +20180,7 @@ + LastUpdateTime i=68 i=78 @@ -18603,6 +20188,7 @@ + OpenWithMasks i=13872 i=13873 @@ -18611,6 +20197,7 @@ + InputArguments i=68 i=78 @@ -18630,7 +20217,6 @@ -1 - @@ -18638,6 +20224,7 @@ + OutputArguments i=68 i=78 @@ -18657,7 +20244,6 @@ -1 - @@ -18665,6 +20251,7 @@ + CertificateTypes i=68 i=78 @@ -18672,6 +20259,7 @@ + DefaultUserTokenGroup i=13883 i=13915 @@ -18681,6 +20269,7 @@ + TrustList i=13884 i=13885 @@ -18700,6 +20289,7 @@ + Size i=68 i=78 @@ -18707,6 +20297,7 @@ + Writable i=68 i=78 @@ -18714,6 +20305,7 @@ + UserWritable i=68 i=78 @@ -18721,6 +20313,7 @@ + OpenCount i=68 i=78 @@ -18728,6 +20321,7 @@ + Open i=13890 i=13891 @@ -18736,6 +20330,7 @@ + InputArguments i=68 i=78 @@ -18755,7 +20350,6 @@ -1 - @@ -18763,6 +20357,7 @@ + OutputArguments i=68 i=78 @@ -18782,7 +20377,6 @@ -1 - @@ -18790,6 +20384,7 @@ + Close i=13893 i=78 @@ -18797,6 +20392,7 @@ + InputArguments i=68 i=78 @@ -18816,7 +20412,6 @@ -1 - @@ -18824,6 +20419,7 @@ + Read i=13895 i=13896 @@ -18832,6 +20428,7 @@ + InputArguments i=68 i=78 @@ -18851,7 +20448,6 @@ -1 - @@ -18867,7 +20463,6 @@ -1 - @@ -18875,6 +20470,7 @@ + OutputArguments i=68 i=78 @@ -18894,7 +20490,6 @@ -1 - @@ -18902,6 +20497,7 @@ + Write i=13898 i=78 @@ -18909,6 +20505,7 @@ + InputArguments i=68 i=78 @@ -18928,7 +20525,6 @@ -1 - @@ -18944,7 +20540,6 @@ -1 - @@ -18952,6 +20547,7 @@ + GetPosition i=13900 i=13901 @@ -18960,6 +20556,7 @@ + InputArguments i=68 i=78 @@ -18979,7 +20576,6 @@ -1 - @@ -18987,6 +20583,7 @@ + OutputArguments i=68 i=78 @@ -19006,7 +20603,6 @@ -1 - @@ -19014,6 +20610,7 @@ + SetPosition i=13903 i=78 @@ -19021,6 +20618,7 @@ + InputArguments i=68 i=78 @@ -19040,7 +20638,6 @@ -1 - @@ -19056,7 +20653,6 @@ -1 - @@ -19064,6 +20660,7 @@ + LastUpdateTime i=68 i=78 @@ -19071,6 +20668,7 @@ + OpenWithMasks i=13906 i=13907 @@ -19079,6 +20677,7 @@ + InputArguments i=68 i=78 @@ -19098,7 +20697,6 @@ -1 - @@ -19106,6 +20704,7 @@ + OutputArguments i=68 i=78 @@ -19125,7 +20724,6 @@ -1 - @@ -19133,6 +20731,7 @@ + CertificateTypes i=68 i=78 @@ -19140,6 +20739,7 @@ + <AdditionalGroup> i=13917 i=13949 @@ -19149,6 +20749,7 @@ + TrustList i=13918 i=13919 @@ -19168,6 +20769,7 @@ + Size i=68 i=78 @@ -19175,6 +20777,7 @@ + Writable i=68 i=78 @@ -19182,6 +20785,7 @@ + UserWritable i=68 i=78 @@ -19189,6 +20793,7 @@ + OpenCount i=68 i=78 @@ -19196,6 +20801,7 @@ + Open i=13924 i=13925 @@ -19204,6 +20810,7 @@ + InputArguments i=68 i=78 @@ -19223,7 +20830,6 @@ -1 - @@ -19231,6 +20837,7 @@ + OutputArguments i=68 i=78 @@ -19250,7 +20857,6 @@ -1 - @@ -19258,6 +20864,7 @@ + Close i=13927 i=78 @@ -19265,6 +20872,7 @@ + InputArguments i=68 i=78 @@ -19284,7 +20892,6 @@ -1 - @@ -19292,6 +20899,7 @@ + Read i=13929 i=13930 @@ -19300,6 +20908,7 @@ + InputArguments i=68 i=78 @@ -19319,7 +20928,6 @@ -1 - @@ -19335,7 +20943,6 @@ -1 - @@ -19343,6 +20950,7 @@ + OutputArguments i=68 i=78 @@ -19362,7 +20970,6 @@ -1 - @@ -19370,6 +20977,7 @@ + Write i=13932 i=78 @@ -19377,6 +20985,7 @@ + InputArguments i=68 i=78 @@ -19396,7 +21005,6 @@ -1 - @@ -19412,7 +21020,6 @@ -1 - @@ -19420,6 +21027,7 @@ + GetPosition i=13934 i=13935 @@ -19428,6 +21036,7 @@ + InputArguments i=68 i=78 @@ -19447,7 +21056,6 @@ -1 - @@ -19455,6 +21063,7 @@ + OutputArguments i=68 i=78 @@ -19474,7 +21083,6 @@ -1 - @@ -19482,6 +21090,7 @@ + SetPosition i=13937 i=78 @@ -19489,6 +21098,7 @@ + InputArguments i=68 i=78 @@ -19508,7 +21118,6 @@ -1 - @@ -19524,7 +21133,6 @@ -1 - @@ -19532,6 +21140,7 @@ + LastUpdateTime i=68 i=78 @@ -19539,6 +21148,7 @@ + OpenWithMasks i=13940 i=13941 @@ -19547,6 +21157,7 @@ + InputArguments i=68 i=78 @@ -19566,7 +21177,6 @@ -1 - @@ -19574,6 +21184,7 @@ + OutputArguments i=68 i=78 @@ -19593,7 +21204,6 @@ -1 - @@ -19601,6 +21211,7 @@ + CertificateTypes i=68 i=78 @@ -19608,41 +21219,49 @@ + CertificateType i=58 + ApplicationCertificateType i=12556 + HttpsCertificateType i=12556 + UserCredentialCertificateType i=12556 + RsaMinApplicationCertificateType i=12557 + RsaSha256ApplicationCertificateType i=12557 + TrustListUpdatedAuditEventType i=2127 + ServerConfigurationType i=13950 i=12708 @@ -19657,6 +21276,7 @@ + CertificateGroups i=13951 i=13813 @@ -19665,6 +21285,7 @@ + DefaultApplicationGroup i=13952 i=13984 @@ -19674,6 +21295,7 @@ + TrustList i=13953 i=13954 @@ -19693,6 +21315,7 @@ + Size i=68 i=78 @@ -19700,6 +21323,7 @@ + Writable i=68 i=78 @@ -19707,6 +21331,7 @@ + UserWritable i=68 i=78 @@ -19714,6 +21339,7 @@ + OpenCount i=68 i=78 @@ -19721,6 +21347,7 @@ + Open i=13959 i=13960 @@ -19729,6 +21356,7 @@ + InputArguments i=68 i=78 @@ -19748,7 +21376,6 @@ -1 - @@ -19756,6 +21383,7 @@ + OutputArguments i=68 i=78 @@ -19775,7 +21403,6 @@ -1 - @@ -19783,6 +21410,7 @@ + Close i=13962 i=78 @@ -19790,6 +21418,7 @@ + InputArguments i=68 i=78 @@ -19809,7 +21438,6 @@ -1 - @@ -19817,6 +21445,7 @@ + Read i=13964 i=13965 @@ -19825,6 +21454,7 @@ + InputArguments i=68 i=78 @@ -19844,7 +21474,6 @@ -1 - @@ -19860,7 +21489,6 @@ -1 - @@ -19868,6 +21496,7 @@ + OutputArguments i=68 i=78 @@ -19887,7 +21516,6 @@ -1 - @@ -19895,6 +21523,7 @@ + Write i=13967 i=78 @@ -19902,6 +21531,7 @@ + InputArguments i=68 i=78 @@ -19921,7 +21551,6 @@ -1 - @@ -19937,7 +21566,6 @@ -1 - @@ -19945,6 +21573,7 @@ + GetPosition i=13969 i=13970 @@ -19953,6 +21582,7 @@ + InputArguments i=68 i=78 @@ -19972,7 +21602,6 @@ -1 - @@ -19980,6 +21609,7 @@ + OutputArguments i=68 i=78 @@ -19999,7 +21629,6 @@ -1 - @@ -20007,6 +21636,7 @@ + SetPosition i=13972 i=78 @@ -20014,6 +21644,7 @@ + InputArguments i=68 i=78 @@ -20033,7 +21664,6 @@ -1 - @@ -20049,7 +21679,6 @@ -1 - @@ -20057,6 +21686,7 @@ + LastUpdateTime i=68 i=78 @@ -20064,6 +21694,7 @@ + OpenWithMasks i=13975 i=13976 @@ -20072,6 +21703,7 @@ + InputArguments i=68 i=78 @@ -20091,7 +21723,6 @@ -1 - @@ -20099,6 +21730,7 @@ + OutputArguments i=68 i=78 @@ -20118,7 +21750,6 @@ -1 - @@ -20126,6 +21757,7 @@ + CertificateTypes i=68 i=78 @@ -20133,6 +21765,7 @@ + ServerCapabilities i=68 i=78 @@ -20140,6 +21773,7 @@ + SupportedPrivateKeyFormats i=68 i=78 @@ -20147,6 +21781,7 @@ + MaxTrustListSize i=68 i=78 @@ -20154,6 +21789,7 @@ + MulticastDnsEnabled i=68 i=78 @@ -20161,6 +21797,7 @@ + UpdateCertificate i=12617 i=12618 @@ -20169,6 +21806,7 @@ + InputArguments i=68 i=78 @@ -20188,7 +21826,6 @@ -1 - @@ -20204,7 +21841,6 @@ -1 - @@ -20220,7 +21856,6 @@ -1 - @@ -20236,7 +21871,6 @@ 1 - @@ -20252,7 +21886,6 @@ -1 - @@ -20268,7 +21901,6 @@ -1 - @@ -20276,6 +21908,7 @@ + OutputArguments i=68 i=78 @@ -20295,7 +21928,6 @@ -1 - @@ -20303,12 +21935,14 @@ + ApplyChanges i=78 i=12581 + CreateSigningRequest i=12732 i=12733 @@ -20317,6 +21951,7 @@ + InputArguments i=68 i=78 @@ -20336,7 +21971,6 @@ -1 - @@ -20352,7 +21986,6 @@ -1 - @@ -20368,7 +22001,6 @@ -1 - @@ -20384,7 +22016,6 @@ -1 - @@ -20400,7 +22031,6 @@ -1 - @@ -20408,6 +22038,7 @@ + OutputArguments i=68 i=78 @@ -20427,7 +22058,6 @@ -1 - @@ -20435,6 +22065,7 @@ + GetRejectedList i=12776 i=78 @@ -20442,6 +22073,7 @@ + OutputArguments i=68 i=78 @@ -20461,7 +22093,6 @@ 1 - @@ -20469,6 +22100,7 @@ + CertificateUpdatedAuditEventType i=13735 i=13736 @@ -20476,6 +22108,7 @@ + CertificateGroup i=68 i=78 @@ -20483,6 +22116,7 @@ + CertificateType i=68 i=78 @@ -20490,6 +22124,7 @@ + ServerConfiguration i=14053 i=12710 @@ -20505,6 +22140,7 @@ + CertificateGroups i=14156 i=14088 @@ -20514,6 +22150,7 @@ + DefaultApplicationGroup i=12642 i=14161 @@ -20522,6 +22159,7 @@ + TrustList i=12643 i=14157 @@ -20543,30 +22181,35 @@ + Size i=68 i=12642 + Writable i=68 i=12642 + UserWritable i=68 i=12642 + OpenCount i=68 i=12642 + Open i=12648 i=12649 @@ -20574,6 +22217,7 @@ + InputArguments i=68 i=12647 @@ -20592,7 +22236,6 @@ -1 - @@ -20600,6 +22243,7 @@ + OutputArguments i=68 i=12647 @@ -20618,7 +22262,6 @@ -1 - @@ -20626,12 +22269,14 @@ + Close i=12651 i=12642 + InputArguments i=68 i=12650 @@ -20650,7 +22295,6 @@ -1 - @@ -20658,6 +22302,7 @@ + Read i=12653 i=12654 @@ -20665,6 +22310,7 @@ + InputArguments i=68 i=12652 @@ -20683,7 +22329,6 @@ -1 - @@ -20699,7 +22344,6 @@ -1 - @@ -20707,6 +22351,7 @@ + OutputArguments i=68 i=12652 @@ -20725,7 +22370,6 @@ -1 - @@ -20733,12 +22377,14 @@ + Write i=12656 i=12642 + InputArguments i=68 i=12655 @@ -20757,7 +22403,6 @@ -1 - @@ -20773,7 +22418,6 @@ -1 - @@ -20781,6 +22425,7 @@ + GetPosition i=12658 i=12659 @@ -20788,6 +22433,7 @@ + InputArguments i=68 i=12657 @@ -20806,7 +22452,6 @@ -1 - @@ -20814,6 +22459,7 @@ + OutputArguments i=68 i=12657 @@ -20832,7 +22478,6 @@ -1 - @@ -20840,12 +22485,14 @@ + SetPosition i=12661 i=12642 + InputArguments i=68 i=12660 @@ -20864,7 +22511,6 @@ -1 - @@ -20880,7 +22526,6 @@ -1 - @@ -20888,12 +22533,14 @@ + LastUpdateTime i=68 i=12642 + OpenWithMasks i=12664 i=12665 @@ -20901,6 +22548,7 @@ + InputArguments i=68 i=12663 @@ -20919,7 +22567,6 @@ -1 - @@ -20927,6 +22574,7 @@ + OutputArguments i=68 i=12663 @@ -20945,7 +22593,6 @@ -1 - @@ -20953,6 +22600,7 @@ + CloseAndUpdate i=14160 i=12667 @@ -20960,6 +22608,7 @@ + InputArguments i=68 i=12666 @@ -20978,7 +22627,6 @@ -1 - @@ -20986,6 +22634,7 @@ + OutputArguments i=68 i=12666 @@ -21004,7 +22653,6 @@ -1 - @@ -21012,12 +22660,14 @@ + AddCertificate i=12669 i=12642 + InputArguments i=68 i=12668 @@ -21036,7 +22686,6 @@ -1 - @@ -21052,7 +22701,6 @@ -1 - @@ -21060,12 +22708,14 @@ + RemoveCertificate i=12671 i=12642 + InputArguments i=68 i=12670 @@ -21084,7 +22734,6 @@ -1 - @@ -21100,7 +22749,6 @@ -1 - @@ -21108,12 +22756,14 @@ + CertificateTypes i=68 i=14156 + DefaultHttpsGroup i=14089 i=14121 @@ -21122,6 +22772,7 @@ + TrustList i=14090 i=14091 @@ -21143,30 +22794,35 @@ + Size i=68 i=14089 + Writable i=68 i=14089 + UserWritable i=68 i=14089 + OpenCount i=68 i=14089 + Open i=14096 i=14097 @@ -21174,6 +22830,7 @@ + InputArguments i=68 i=14095 @@ -21192,7 +22849,6 @@ -1 - @@ -21200,6 +22856,7 @@ + OutputArguments i=68 i=14095 @@ -21218,7 +22875,6 @@ -1 - @@ -21226,12 +22882,14 @@ + Close i=14099 i=14089 + InputArguments i=68 i=14098 @@ -21250,7 +22908,6 @@ -1 - @@ -21258,6 +22915,7 @@ + Read i=14101 i=14102 @@ -21265,6 +22923,7 @@ + InputArguments i=68 i=14100 @@ -21283,7 +22942,6 @@ -1 - @@ -21299,7 +22957,6 @@ -1 - @@ -21307,6 +22964,7 @@ + OutputArguments i=68 i=14100 @@ -21325,7 +22983,6 @@ -1 - @@ -21333,12 +22990,14 @@ + Write i=14104 i=14089 + InputArguments i=68 i=14103 @@ -21357,7 +23016,6 @@ -1 - @@ -21373,7 +23031,6 @@ -1 - @@ -21381,6 +23038,7 @@ + GetPosition i=14106 i=14107 @@ -21388,6 +23046,7 @@ + InputArguments i=68 i=14105 @@ -21406,7 +23065,6 @@ -1 - @@ -21414,6 +23072,7 @@ + OutputArguments i=68 i=14105 @@ -21432,7 +23091,6 @@ -1 - @@ -21440,12 +23098,14 @@ + SetPosition i=14109 i=14089 + InputArguments i=68 i=14108 @@ -21464,7 +23124,6 @@ -1 - @@ -21480,7 +23139,6 @@ -1 - @@ -21488,12 +23146,14 @@ + LastUpdateTime i=68 i=14089 + OpenWithMasks i=14112 i=14113 @@ -21501,6 +23161,7 @@ + InputArguments i=68 i=14111 @@ -21519,7 +23180,6 @@ -1 - @@ -21527,6 +23187,7 @@ + OutputArguments i=68 i=14111 @@ -21545,7 +23206,6 @@ -1 - @@ -21553,6 +23213,7 @@ + CloseAndUpdate i=14115 i=14116 @@ -21560,6 +23221,7 @@ + InputArguments i=68 i=14114 @@ -21578,7 +23240,6 @@ -1 - @@ -21586,6 +23247,7 @@ + OutputArguments i=68 i=14114 @@ -21604,7 +23266,6 @@ -1 - @@ -21612,12 +23273,14 @@ + AddCertificate i=14118 i=14089 + InputArguments i=68 i=14117 @@ -21636,7 +23299,6 @@ -1 - @@ -21652,7 +23314,6 @@ -1 - @@ -21660,12 +23321,14 @@ + RemoveCertificate i=14120 i=14089 + InputArguments i=68 i=14119 @@ -21684,7 +23347,6 @@ -1 - @@ -21700,7 +23362,6 @@ -1 - @@ -21708,12 +23369,14 @@ + CertificateTypes i=68 i=14088 + DefaultUserTokenGroup i=14123 i=14155 @@ -21722,6 +23385,7 @@ + TrustList i=14124 i=14125 @@ -21743,30 +23407,35 @@ + Size i=68 i=14123 + Writable i=68 i=14123 + UserWritable i=68 i=14123 + OpenCount i=68 i=14123 + Open i=14130 i=14131 @@ -21774,6 +23443,7 @@ + InputArguments i=68 i=14129 @@ -21792,7 +23462,6 @@ -1 - @@ -21800,6 +23469,7 @@ + OutputArguments i=68 i=14129 @@ -21818,7 +23488,6 @@ -1 - @@ -21826,12 +23495,14 @@ + Close i=14133 i=14123 + InputArguments i=68 i=14132 @@ -21850,7 +23521,6 @@ -1 - @@ -21858,6 +23528,7 @@ + Read i=14135 i=14136 @@ -21865,6 +23536,7 @@ + InputArguments i=68 i=14134 @@ -21883,7 +23555,6 @@ -1 - @@ -21899,7 +23570,6 @@ -1 - @@ -21907,6 +23577,7 @@ + OutputArguments i=68 i=14134 @@ -21925,7 +23596,6 @@ -1 - @@ -21933,12 +23603,14 @@ + Write i=14138 i=14123 + InputArguments i=68 i=14137 @@ -21957,7 +23629,6 @@ -1 - @@ -21973,7 +23644,6 @@ -1 - @@ -21981,6 +23651,7 @@ + GetPosition i=14140 i=14141 @@ -21988,6 +23659,7 @@ + InputArguments i=68 i=14139 @@ -22006,7 +23678,6 @@ -1 - @@ -22014,6 +23685,7 @@ + OutputArguments i=68 i=14139 @@ -22032,7 +23704,6 @@ -1 - @@ -22040,12 +23711,14 @@ + SetPosition i=14143 i=14123 + InputArguments i=68 i=14142 @@ -22064,7 +23737,6 @@ -1 - @@ -22080,7 +23752,6 @@ -1 - @@ -22088,12 +23759,14 @@ + LastUpdateTime i=68 i=14123 + OpenWithMasks i=14146 i=14147 @@ -22101,6 +23774,7 @@ + InputArguments i=68 i=14145 @@ -22119,7 +23793,6 @@ -1 - @@ -22127,6 +23800,7 @@ + OutputArguments i=68 i=14145 @@ -22145,7 +23819,6 @@ -1 - @@ -22153,6 +23826,7 @@ + CloseAndUpdate i=14149 i=14150 @@ -22160,6 +23834,7 @@ + InputArguments i=68 i=14148 @@ -22178,7 +23853,6 @@ -1 - @@ -22186,6 +23860,7 @@ + OutputArguments i=68 i=14148 @@ -22204,7 +23879,6 @@ -1 - @@ -22212,12 +23886,14 @@ + AddCertificate i=14152 i=14123 + InputArguments i=68 i=14151 @@ -22236,7 +23912,6 @@ -1 - @@ -22252,7 +23927,6 @@ -1 - @@ -22260,12 +23934,14 @@ + RemoveCertificate i=14154 i=14123 + InputArguments i=68 i=14153 @@ -22284,7 +23960,6 @@ -1 - @@ -22300,7 +23975,6 @@ -1 - @@ -22308,36 +23982,42 @@ + CertificateTypes i=68 i=14122 + ServerCapabilities i=68 i=12637 + SupportedPrivateKeyFormats i=68 i=12637 + MaxTrustListSize i=68 i=12637 + MulticastDnsEnabled i=68 i=12637 + UpdateCertificate i=13738 i=13739 @@ -22345,6 +24025,7 @@ + InputArguments i=68 i=13737 @@ -22363,7 +24044,6 @@ -1 - @@ -22379,7 +24059,6 @@ -1 - @@ -22395,7 +24074,6 @@ -1 - @@ -22411,7 +24089,6 @@ 1 - @@ -22427,7 +24104,6 @@ -1 - @@ -22443,7 +24119,6 @@ -1 - @@ -22451,6 +24126,7 @@ + OutputArguments i=68 i=13737 @@ -22469,7 +24145,6 @@ -1 - @@ -22477,11 +24152,13 @@ + ApplyChanges i=12637 + CreateSigningRequest i=12738 i=12739 @@ -22489,6 +24166,7 @@ + InputArguments i=68 i=12737 @@ -22507,7 +24185,6 @@ -1 - @@ -22523,7 +24200,6 @@ -1 - @@ -22539,7 +24215,6 @@ -1 - @@ -22555,7 +24230,6 @@ -1 - @@ -22571,7 +24245,6 @@ -1 - @@ -22579,6 +24252,7 @@ + OutputArguments i=68 i=12737 @@ -22597,7 +24271,6 @@ -1 - @@ -22605,12 +24278,14 @@ + GetRejectedList i=12778 i=12637 + OutputArguments i=68 i=12777 @@ -22629,7 +24304,6 @@ 1 - @@ -22637,6 +24311,7 @@ + KeyCredentialConfigurationFolderType i=17511 i=17522 @@ -22644,6 +24319,7 @@ + <ServiceName> i=17512 i=17513 @@ -22653,6 +24329,7 @@ + ResourceUri i=68 i=78 @@ -22660,6 +24337,7 @@ + ProfileUri i=68 i=78 @@ -22667,6 +24345,7 @@ + CreateCredential i=17523 i=17524 @@ -22675,6 +24354,7 @@ + InputArguments i=68 i=78 @@ -22694,7 +24374,6 @@ -1 - @@ -22710,7 +24389,6 @@ -1 - @@ -22726,7 +24404,6 @@ 1 - @@ -22734,6 +24411,7 @@ + OutputArguments i=68 i=78 @@ -22753,7 +24431,6 @@ -1 - @@ -22761,12 +24438,14 @@ + KeyCredentialConfiguration i=12637 i=17496 + KeyCredentialConfigurationType i=18069 i=18165 @@ -22779,6 +24458,7 @@ + ResourceUri i=68 i=78 @@ -22786,6 +24466,7 @@ + ProfileUri i=68 i=78 @@ -22793,6 +24474,7 @@ + EndpointUrls i=68 i=80 @@ -22800,6 +24482,7 @@ + ServiceStatus i=68 i=80 @@ -22807,6 +24490,7 @@ + GetEncryptingKey i=17535 i=17536 @@ -22815,6 +24499,7 @@ + InputArguments i=68 i=78 @@ -22834,7 +24519,6 @@ -1 - @@ -22850,7 +24534,6 @@ -1 - @@ -22858,6 +24541,7 @@ + OutputArguments i=68 i=78 @@ -22877,7 +24561,6 @@ -1 - @@ -22893,7 +24576,6 @@ -1 - @@ -22901,6 +24583,7 @@ + UpdateCredential i=18007 i=80 @@ -22908,6 +24591,7 @@ + InputArguments i=68 i=78 @@ -22927,7 +24611,6 @@ -1 - @@ -22943,7 +24626,6 @@ -1 - @@ -22959,7 +24641,6 @@ -1 - @@ -22975,7 +24656,6 @@ -1 - @@ -22983,18 +24663,21 @@ + DeleteCredential i=80 i=18001 + KeyCredentialAuditEventType i=18028 i=2127 + ResourceUri i=68 i=78 @@ -23002,22 +24685,26 @@ + KeyCredentialUpdatedAuditEventType i=18011 + KeyCredentialDeletedAuditEventType i=18011 + AuthorizationServices i=12637 i=61 + AuthorizationServiceConfigurationType i=18072 i=17860 @@ -23026,6 +24713,7 @@ + ServiceUri i=68 i=78 @@ -23033,6 +24721,7 @@ + ServiceCertificate i=68 i=78 @@ -23040,6 +24729,7 @@ + IssuerEndpointUrl i=68 i=78 @@ -23047,6 +24737,7 @@ + AggregateConfigurationType i=11188 i=11189 @@ -23056,6 +24747,7 @@ + TreatUncertainAsBad i=68 i=78 @@ -23063,6 +24755,7 @@ + PercentDataBad i=68 i=78 @@ -23070,6 +24763,7 @@ + PercentDataGood i=68 i=78 @@ -23077,6 +24771,7 @@ + UseSlopedExtrapolation i=68 i=78 @@ -23084,195 +24779,233 @@ + Interpolative i=2340 + Average i=2340 + TimeAverage i=2340 + TimeAverage2 i=2340 + Total i=2340 + Total2 i=2340 + Minimum i=2340 + Maximum i=2340 + MinimumActualTime i=2340 + MaximumActualTime i=2340 + Range i=2340 + Minimum2 i=2340 + Maximum2 i=2340 + MinimumActualTime2 i=2340 + MaximumActualTime2 i=2340 + Range2 i=2340 + AnnotationCount i=2340 + Count i=2340 + DurationInStateZero i=2340 + DurationInStateNonZero i=2340 + NumberOfTransitions i=2340 + Start i=2340 + End i=2340 + Delta i=2340 + StartBound i=2340 + EndBound i=2340 + DeltaBounds i=2340 + DurationGood i=2340 + DurationBad i=2340 + PercentGood i=2340 + PercentBad i=2340 + WorstQuality i=2340 + WorstQuality2 i=2340 + StandardDeviationSample i=2340 + StandardDeviationPopulation i=2340 + VarianceSample i=2340 + VariancePopulation i=2340 + DataTypeSchemaHeader i=22 - + @@ -23280,56 +25013,62 @@ + DataTypeDescription i=22 - + + StructureDescription i=14525 - + + EnumDescription i=14525 - + + SimpleTypeDescription i=14525 - + + UABinaryFileDataType i=15534 - + + PubSubState i=14648 i=29 - + @@ -23337,6 +25076,7 @@ + EnumStrings i=68 i=78 @@ -23368,10 +25108,11 @@ + DataSetMetaDataType i=15534 - + @@ -23380,10 +25121,11 @@ + FieldMetaData i=22 - + @@ -23397,15 +25139,17 @@ + DataSetFieldFlags i=15577 i=5 - + + OptionSetValues i=68 i=78 @@ -23422,19 +25166,21 @@ + ConfigurationVersionDataType i=22 - + + PublishedDataSetDataType i=22 - + @@ -23443,15 +25189,17 @@ + PublishedDataSetSourceDataType i=22 + PublishedVariableDataType i=22 - + @@ -23463,29 +25211,32 @@ + PublishedDataItemsDataType i=15580 - + + PublishedEventsDataType i=15580 - + + DataSetFieldContentMask i=15584 i=7 - + @@ -23495,6 +25246,7 @@ + OptionSetValues i=68 i=78 @@ -23536,10 +25288,11 @@ + DataSetWriterDataType i=22 - + @@ -23552,20 +25305,23 @@ + DataSetWriterTransportDataType i=22 + DataSetWriterMessageDataType i=22 + PubSubGroupDataType i=22 - + @@ -23576,10 +25332,11 @@ + WriterGroupDataType i=15609 - + @@ -23592,20 +25349,23 @@ + WriterGroupTransportDataType i=22 + WriterGroupMessageDataType i=22 + PubSubConnectionDataType i=22 - + @@ -23618,51 +25378,58 @@ + ConnectionTransportDataType i=22 + NetworkAddressDataType i=22 - + + NetworkAddressUrlDataType i=15502 - + + ReaderGroupDataType i=15609 - + + ReaderGroupTransportDataType i=22 + ReaderGroupMessageDataType i=22 + DataSetReaderDataType i=22 - + @@ -23683,33 +25450,38 @@ + DataSetReaderTransportDataType i=22 + DataSetReaderMessageDataType i=22 + SubscribedDataSetDataType i=22 + TargetVariablesDataType i=15630 - + + FieldTargetDataType i=22 - + @@ -23720,17 +25492,19 @@ + OverrideValueHandling i=15875 i=29 - + + EnumStrings i=68 i=78 @@ -23757,36 +25531,40 @@ + SubscribedDataSetMirrorDataType i=15630 - + + PubSubConfigurationDataType i=22 - + + DataSetOrderingType i=15641 i=29 - + + EnumStrings i=68 i=78 @@ -23813,11 +25591,12 @@ + UadpNetworkMessageContentMask i=15643 i=7 - + @@ -23832,6 +25611,7 @@ + OptionSetValues i=68 i=78 @@ -23898,10 +25678,11 @@ + UadpWriterGroupMessageDataType i=15616 - + @@ -23910,11 +25691,12 @@ + UadpDataSetMessageContentMask i=15647 i=7 - + @@ -23924,6 +25706,7 @@ + OptionSetValues i=68 i=78 @@ -23965,10 +25748,11 @@ + UadpDataSetWriterMessageDataType i=15605 - + @@ -23976,10 +25760,11 @@ + UadpDataSetReaderMessageDataType i=15629 - + @@ -23992,11 +25777,12 @@ + JsonNetworkMessageContentMask i=15655 i=7 - + @@ -24006,6 +25792,7 @@ + OptionSetValues i=68 i=78 @@ -24047,19 +25834,21 @@ + JsonWriterGroupMessageDataType i=15616 - + + JsonDataSetMessageContentMask i=15659 i=7 - + @@ -24068,6 +25857,7 @@ + OptionSetValues i=68 i=78 @@ -24104,54 +25894,60 @@ + JsonDataSetWriterMessageDataType i=15605 - + + JsonDataSetReaderMessageDataType i=15629 - + + DatagramConnectionTransportDataType i=15618 - + + DatagramWriterGroupTransportDataType i=15611 - + + BrokerConnectionTransportDataType i=15618 - + + BrokerTransportQualityOfService i=15009 i=29 - + @@ -24160,6 +25956,7 @@ + EnumStrings i=68 i=78 @@ -24196,10 +25993,11 @@ + BrokerWriterGroupTransportDataType i=15611 - + @@ -24207,10 +26005,11 @@ + BrokerDataSetWriterTransportDataType i=15598 - + @@ -24220,10 +26019,11 @@ + BrokerDataSetReaderTransportDataType i=15628 - + @@ -24232,6 +26032,7 @@ + PubSubKeyServiceType i=15907 i=15910 @@ -24240,6 +26041,7 @@ + GetSecurityKeys i=15908 i=15909 @@ -24248,6 +26050,7 @@ + InputArguments i=68 i=78 @@ -24267,7 +26070,6 @@ -1 - @@ -24283,7 +26085,6 @@ -1 - @@ -24299,7 +26100,6 @@ -1 - @@ -24307,6 +26107,7 @@ + OutputArguments i=68 i=78 @@ -24326,7 +26127,6 @@ -1 - @@ -24342,7 +26142,6 @@ -1 - @@ -24358,7 +26157,6 @@ 1 - @@ -24374,7 +26172,6 @@ -1 - @@ -24390,7 +26187,6 @@ -1 - @@ -24398,6 +26194,7 @@ + GetSecurityGroup i=15911 i=15912 @@ -24406,6 +26203,7 @@ + InputArguments i=68 i=78 @@ -24425,7 +26223,6 @@ -1 - @@ -24433,6 +26230,7 @@ + OutputArguments i=68 i=78 @@ -24452,7 +26250,6 @@ -1 - @@ -24460,6 +26257,7 @@ + SecurityGroups i=15914 i=15917 @@ -24469,6 +26267,7 @@ + AddSecurityGroup i=15915 i=15916 @@ -24477,6 +26276,7 @@ + InputArguments i=68 i=78 @@ -24496,7 +26296,6 @@ -1 - @@ -24512,7 +26311,6 @@ -1 - @@ -24528,7 +26326,6 @@ -1 - @@ -24544,7 +26341,6 @@ -1 - @@ -24560,7 +26356,6 @@ -1 - @@ -24568,6 +26363,7 @@ + OutputArguments i=68 i=78 @@ -24587,7 +26383,6 @@ -1 - @@ -24603,7 +26398,6 @@ -1 - @@ -24611,6 +26405,7 @@ + RemoveSecurityGroup i=15918 i=78 @@ -24618,6 +26413,7 @@ + InputArguments i=68 i=78 @@ -24637,7 +26433,6 @@ -1 - @@ -24645,6 +26440,7 @@ + SecurityGroupFolderType i=15453 i=15459 @@ -24654,6 +26450,7 @@ + <SecurityGroupFolderName> i=15454 i=15457 @@ -24663,6 +26460,7 @@ + AddSecurityGroup i=15455 i=15456 @@ -24671,6 +26469,7 @@ + InputArguments i=68 i=78 @@ -24690,7 +26489,6 @@ -1 - @@ -24706,7 +26504,6 @@ -1 - @@ -24722,7 +26519,6 @@ -1 - @@ -24738,7 +26534,6 @@ -1 - @@ -24754,7 +26549,6 @@ -1 - @@ -24762,6 +26556,7 @@ + OutputArguments i=68 i=78 @@ -24781,7 +26576,6 @@ -1 - @@ -24797,7 +26591,6 @@ -1 - @@ -24805,6 +26598,7 @@ + RemoveSecurityGroup i=15458 i=78 @@ -24812,6 +26606,7 @@ + InputArguments i=68 i=78 @@ -24831,7 +26626,6 @@ -1 - @@ -24839,6 +26633,7 @@ + <SecurityGroupName> i=15460 i=15010 @@ -24851,6 +26646,7 @@ + SecurityGroupId i=68 i=78 @@ -24858,6 +26654,7 @@ + KeyLifetime i=68 i=78 @@ -24865,6 +26662,7 @@ + SecurityPolicyUri i=68 i=78 @@ -24872,6 +26670,7 @@ + MaxFutureKeyCount i=68 i=78 @@ -24879,6 +26678,7 @@ + MaxPastKeyCount i=68 i=78 @@ -24886,6 +26686,7 @@ + AddSecurityGroup i=15462 i=15463 @@ -24894,6 +26695,7 @@ + InputArguments i=68 i=78 @@ -24913,7 +26715,6 @@ -1 - @@ -24929,7 +26730,6 @@ -1 - @@ -24945,7 +26745,6 @@ -1 - @@ -24961,7 +26760,6 @@ -1 - @@ -24977,7 +26775,6 @@ -1 - @@ -24985,6 +26782,7 @@ + OutputArguments i=68 i=78 @@ -25004,7 +26802,6 @@ -1 - @@ -25020,7 +26817,6 @@ -1 - @@ -25028,6 +26824,7 @@ + RemoveSecurityGroup i=15465 i=78 @@ -25035,6 +26832,7 @@ + InputArguments i=68 i=78 @@ -25054,7 +26852,6 @@ -1 - @@ -25062,6 +26859,7 @@ + SecurityGroupType i=15472 i=15046 @@ -25072,6 +26870,7 @@ + SecurityGroupId i=68 i=78 @@ -25079,6 +26878,7 @@ + KeyLifetime i=68 i=78 @@ -25086,6 +26886,7 @@ + SecurityPolicyUri i=68 i=78 @@ -25093,6 +26894,7 @@ + MaxFutureKeyCount i=68 i=78 @@ -25100,6 +26902,7 @@ + MaxPastKeyCount i=68 i=78 @@ -25107,6 +26910,7 @@ + PublishSubscribeType i=14417 i=17296 @@ -25120,6 +26924,7 @@ + <ConnectionName> i=14418 i=17292 @@ -25132,6 +26937,7 @@ + PublisherId i=68 i=78 @@ -25139,6 +26945,7 @@ + TransportProfileUri i=17706 i=16309 @@ -25147,6 +26954,7 @@ + Selections i=68 i=78 @@ -25154,6 +26962,7 @@ + ConnectionProperties i=68 i=78 @@ -25161,6 +26970,7 @@ + Address i=15533 i=21145 @@ -25169,6 +26979,7 @@ + NetworkInterface i=17503 i=16309 @@ -25177,6 +26988,7 @@ + Selections i=68 i=78 @@ -25184,6 +26996,7 @@ + Status i=14420 i=14643 @@ -25192,6 +27005,7 @@ + State i=63 i=78 @@ -25199,6 +27013,7 @@ + SetSecurityKeys i=17297 i=80 @@ -25206,6 +27021,7 @@ + InputArguments i=68 i=78 @@ -25225,7 +27041,6 @@ -1 - @@ -25241,7 +27056,6 @@ -1 - @@ -25257,7 +27071,6 @@ -1 - @@ -25273,7 +27086,6 @@ -1 - @@ -25289,7 +27101,6 @@ 1 - @@ -25305,7 +27116,6 @@ -1 - @@ -25321,7 +27131,6 @@ -1 - @@ -25329,6 +27138,7 @@ + AddConnection i=16599 i=16600 @@ -25337,6 +27147,7 @@ + InputArguments i=68 i=78 @@ -25356,7 +27167,6 @@ -1 - @@ -25364,6 +27174,7 @@ + OutputArguments i=68 i=78 @@ -25383,7 +27194,6 @@ -1 - @@ -25391,6 +27201,7 @@ + RemoveConnection i=14433 i=80 @@ -25398,6 +27209,7 @@ + InputArguments i=68 i=78 @@ -25417,7 +27229,6 @@ -1 - @@ -25425,6 +27236,7 @@ + PublishedDataSets i=14477 i=78 @@ -25432,6 +27244,7 @@ + Status i=15845 i=14643 @@ -25440,6 +27253,7 @@ + State i=63 i=78 @@ -25447,6 +27261,7 @@ + Diagnostics i=18716 i=18717 @@ -25461,6 +27276,7 @@ + DiagnosticsLevel i=63 i=78 @@ -25468,6 +27284,7 @@ + TotalInformation i=18718 i=18719 @@ -25478,6 +27295,7 @@ + Active i=68 i=78 @@ -25485,6 +27303,7 @@ + Classification i=68 i=78 @@ -25492,6 +27311,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25499,6 +27319,7 @@ + TotalError i=18723 i=18724 @@ -25509,6 +27330,7 @@ + Active i=68 i=78 @@ -25516,6 +27338,7 @@ + Classification i=68 i=78 @@ -25523,6 +27346,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25530,12 +27354,14 @@ + Reset i=78 i=18715 + SubError i=63 i=78 @@ -25543,6 +27369,7 @@ + Counters i=18730 i=18735 @@ -25556,6 +27383,7 @@ + StateError i=18731 i=18732 @@ -25566,6 +27394,7 @@ + Active i=68 i=78 @@ -25573,6 +27402,7 @@ + Classification i=68 i=78 @@ -25583,6 +27413,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25593,6 +27424,7 @@ + StateOperationalByMethod i=18736 i=18737 @@ -25603,6 +27435,7 @@ + Active i=68 i=78 @@ -25610,6 +27443,7 @@ + Classification i=68 i=78 @@ -25620,6 +27454,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25630,6 +27465,7 @@ + StateOperationalByParent i=18741 i=18742 @@ -25640,6 +27476,7 @@ + Active i=68 i=78 @@ -25647,6 +27484,7 @@ + Classification i=68 i=78 @@ -25657,6 +27495,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25667,6 +27506,7 @@ + StateOperationalFromError i=18746 i=18747 @@ -25677,6 +27517,7 @@ + Active i=68 i=78 @@ -25684,6 +27525,7 @@ + Classification i=68 i=78 @@ -25694,6 +27536,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25704,6 +27547,7 @@ + StatePausedByParent i=18751 i=18752 @@ -25714,6 +27558,7 @@ + Active i=68 i=78 @@ -25721,6 +27566,7 @@ + Classification i=68 i=78 @@ -25731,6 +27577,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25741,6 +27588,7 @@ + StateDisabledByMethod i=18756 i=18757 @@ -25751,6 +27599,7 @@ + Active i=68 i=78 @@ -25758,6 +27607,7 @@ + Classification i=68 i=78 @@ -25768,6 +27618,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25778,6 +27629,7 @@ + LiveValues i=18761 i=18763 @@ -25789,6 +27641,7 @@ + ConfiguredDataSetWriters i=18762 i=63 @@ -25797,6 +27650,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25807,6 +27661,7 @@ + ConfiguredDataSetReaders i=18764 i=63 @@ -25815,6 +27670,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25825,6 +27681,7 @@ + OperationalDataSetWriters i=18766 i=63 @@ -25833,6 +27690,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25843,6 +27701,7 @@ + OperationalDataSetReaders i=18768 i=63 @@ -25851,6 +27710,7 @@ + DiagnosticsLevel i=68 i=78 @@ -25861,6 +27721,7 @@ + SupportedTransportProfiles i=68 i=78 @@ -25868,6 +27729,7 @@ + PublishSubscribe i=15215 i=15440 @@ -25883,6 +27745,7 @@ + GetSecurityKeys i=15216 i=15217 @@ -25890,6 +27753,7 @@ + InputArguments i=68 i=15215 @@ -25908,7 +27772,6 @@ -1 - @@ -25924,7 +27787,6 @@ -1 - @@ -25940,7 +27802,6 @@ -1 - @@ -25948,6 +27809,7 @@ + OutputArguments i=68 i=15215 @@ -25966,7 +27828,6 @@ -1 - @@ -25982,7 +27843,6 @@ -1 - @@ -25998,7 +27858,6 @@ 1 - @@ -26014,7 +27873,6 @@ -1 - @@ -26030,7 +27888,6 @@ -1 - @@ -26038,6 +27895,7 @@ + GetSecurityGroup i=15441 i=15442 @@ -26045,6 +27903,7 @@ + InputArguments i=68 i=15440 @@ -26063,7 +27922,6 @@ -1 - @@ -26071,6 +27929,7 @@ + OutputArguments i=68 i=15440 @@ -26089,7 +27948,6 @@ -1 - @@ -26097,6 +27955,7 @@ + SecurityGroups i=15444 i=15447 @@ -26105,6 +27964,7 @@ + AddSecurityGroup i=15445 i=15446 @@ -26112,6 +27972,7 @@ + InputArguments i=68 i=15444 @@ -26130,7 +27991,6 @@ -1 - @@ -26146,7 +28006,6 @@ -1 - @@ -26162,7 +28021,6 @@ -1 - @@ -26178,7 +28036,6 @@ -1 - @@ -26194,7 +28051,6 @@ -1 - @@ -26202,6 +28058,7 @@ + OutputArguments i=68 i=15444 @@ -26220,7 +28077,6 @@ -1 - @@ -26236,7 +28092,6 @@ -1 - @@ -26244,12 +28099,14 @@ + RemoveSecurityGroup i=15448 i=15443 + InputArguments i=68 i=15447 @@ -26268,7 +28125,6 @@ -1 - @@ -26276,6 +28132,7 @@ + AddConnection i=17367 i=17368 @@ -26283,6 +28140,7 @@ + InputArguments i=68 i=17366 @@ -26301,7 +28159,6 @@ -1 - @@ -26309,6 +28166,7 @@ + OutputArguments i=68 i=17366 @@ -26327,7 +28185,6 @@ -1 - @@ -26335,12 +28192,14 @@ + RemoveConnection i=17370 i=14443 + InputArguments i=68 i=17369 @@ -26359,7 +28218,6 @@ -1 - @@ -26367,12 +28225,14 @@ + PublishedDataSets i=14477 i=14443 + Status i=17406 i=14643 @@ -26380,12 +28240,14 @@ + State i=63 i=17405 + Diagnostics i=17410 i=17411 @@ -26399,12 +28261,14 @@ + DiagnosticsLevel i=63 i=17409 + TotalInformation i=17412 i=17413 @@ -26414,24 +28278,28 @@ + Active i=68 i=17411 + Classification i=68 i=17411 + DiagnosticsLevel i=68 i=17411 + TotalError i=17417 i=17418 @@ -26441,35 +28309,41 @@ + Active i=68 i=17416 + Classification i=68 i=17416 + DiagnosticsLevel i=68 i=17416 + Reset i=17409 + SubError i=63 i=17409 + Counters i=17424 i=17431 @@ -26482,6 +28356,7 @@ + StateError i=17425 i=17426 @@ -26491,12 +28366,14 @@ + Active i=68 i=17424 + Classification i=68 i=17424 @@ -26506,6 +28383,7 @@ + DiagnosticsLevel i=68 i=17424 @@ -26515,6 +28393,7 @@ + StateOperationalByMethod i=17432 i=17433 @@ -26524,12 +28403,14 @@ + Active i=68 i=17431 + Classification i=68 i=17431 @@ -26539,6 +28420,7 @@ + DiagnosticsLevel i=68 i=17431 @@ -26548,6 +28430,7 @@ + StateOperationalByParent i=17437 i=17438 @@ -26557,12 +28440,14 @@ + Active i=68 i=17436 + Classification i=68 i=17436 @@ -26572,6 +28457,7 @@ + DiagnosticsLevel i=68 i=17436 @@ -26581,6 +28467,7 @@ + StateOperationalFromError i=17442 i=17443 @@ -26590,12 +28477,14 @@ + Active i=68 i=17441 + Classification i=68 i=17441 @@ -26605,6 +28494,7 @@ + DiagnosticsLevel i=68 i=17441 @@ -26614,6 +28504,7 @@ + StatePausedByParent i=17447 i=17448 @@ -26623,12 +28514,14 @@ + Active i=68 i=17446 + Classification i=68 i=17446 @@ -26638,6 +28531,7 @@ + DiagnosticsLevel i=68 i=17446 @@ -26647,6 +28541,7 @@ + StateDisabledByMethod i=17452 i=17453 @@ -26656,12 +28551,14 @@ + Active i=68 i=17451 + Classification i=68 i=17451 @@ -26671,6 +28568,7 @@ + DiagnosticsLevel i=68 i=17451 @@ -26680,6 +28578,7 @@ + LiveValues i=17458 i=17460 @@ -26690,6 +28589,7 @@ + ConfiguredDataSetWriters i=17459 i=63 @@ -26697,6 +28597,7 @@ + DiagnosticsLevel i=68 i=17458 @@ -26706,6 +28607,7 @@ + ConfiguredDataSetReaders i=17461 i=63 @@ -26713,6 +28615,7 @@ + DiagnosticsLevel i=68 i=17460 @@ -26722,6 +28625,7 @@ + OperationalDataSetWriters i=17463 i=63 @@ -26729,6 +28633,7 @@ + DiagnosticsLevel i=68 i=17462 @@ -26738,6 +28643,7 @@ + OperationalDataSetReaders i=17466 i=63 @@ -26745,6 +28651,7 @@ + DiagnosticsLevel i=68 i=17464 @@ -26754,18 +28661,21 @@ + SupportedTransportProfiles i=68 i=14443 + HasPubSubConnection i=47 PubSubConnectionOf + PublishedDataSetType i=15222 i=14519 @@ -26776,6 +28686,7 @@ + <DataSetWriterName> i=16720 i=16721 @@ -26787,6 +28698,7 @@ + DataSetWriterId i=68 i=78 @@ -26794,6 +28706,7 @@ + DataSetFieldContentMask i=68 i=78 @@ -26801,6 +28714,7 @@ + DataSetWriterProperties i=68 i=78 @@ -26808,6 +28722,7 @@ + Status i=15224 i=14643 @@ -26816,6 +28731,7 @@ + State i=63 i=78 @@ -26823,6 +28739,7 @@ + ConfigurationVersion i=68 i=78 @@ -26830,6 +28747,7 @@ + DataSetMetaData i=68 i=78 @@ -26837,6 +28755,7 @@ + DataSetClassId i=68 i=80 @@ -26844,6 +28763,7 @@ + ExtensionFields i=15482 i=15485 @@ -26853,6 +28773,7 @@ + AddExtensionField i=15483 i=15484 @@ -26861,6 +28782,7 @@ + InputArguments i=68 i=78 @@ -26880,7 +28802,6 @@ -1 - @@ -26896,7 +28817,6 @@ -2 - @@ -26904,6 +28824,7 @@ + OutputArguments i=68 i=78 @@ -26923,7 +28844,6 @@ -1 - @@ -26931,6 +28851,7 @@ + RemoveExtensionField i=15486 i=78 @@ -26938,6 +28859,7 @@ + InputArguments i=68 i=78 @@ -26957,7 +28879,6 @@ -1 - @@ -26965,6 +28886,7 @@ + ExtensionFieldsType i=15490 i=15491 @@ -26973,6 +28895,7 @@ + <ExtensionFieldName> i=68 i=11508 @@ -26980,6 +28903,7 @@ + AddExtensionField i=15492 i=15493 @@ -26988,6 +28912,7 @@ + InputArguments i=68 i=78 @@ -27007,7 +28932,6 @@ -1 - @@ -27023,7 +28947,6 @@ -2 - @@ -27031,6 +28954,7 @@ + OutputArguments i=68 i=78 @@ -27050,7 +28974,6 @@ -1 - @@ -27058,6 +28981,7 @@ + RemoveExtensionField i=15495 i=78 @@ -27065,6 +28989,7 @@ + InputArguments i=68 i=78 @@ -27084,7 +29009,6 @@ -1 - @@ -27092,12 +29016,14 @@ + DataSetToWriter i=33 WriterToDataSet + PublishedDataItemsType i=14548 i=14555 @@ -27106,6 +29032,7 @@ + PublishedData i=68 i=78 @@ -27113,6 +29040,7 @@ + AddVariables i=14556 i=14557 @@ -27121,6 +29049,7 @@ + InputArguments i=68 i=78 @@ -27140,7 +29069,6 @@ -1 - @@ -27156,7 +29084,6 @@ 1 - @@ -27172,7 +29099,6 @@ 1 - @@ -27188,7 +29114,6 @@ 1 - @@ -27196,6 +29121,7 @@ + OutputArguments i=68 i=78 @@ -27215,7 +29141,6 @@ -1 - @@ -27231,7 +29156,6 @@ 1 - @@ -27239,6 +29163,7 @@ + RemoveVariables i=14559 i=14560 @@ -27247,6 +29172,7 @@ + InputArguments i=68 i=78 @@ -27266,7 +29192,6 @@ -1 - @@ -27282,7 +29207,6 @@ 1 - @@ -27290,6 +29214,7 @@ + OutputArguments i=68 i=78 @@ -27309,7 +29234,6 @@ -1 - @@ -27325,7 +29249,6 @@ 1 - @@ -27333,6 +29256,7 @@ + PublishedEventsType i=14586 i=14587 @@ -27342,6 +29266,7 @@ + EventNotifier i=68 i=78 @@ -27349,6 +29274,7 @@ + SelectedFields i=68 i=78 @@ -27356,6 +29282,7 @@ + Filter i=68 i=78 @@ -27363,6 +29290,7 @@ + ModifyFieldSelection i=15053 i=15517 @@ -27371,6 +29299,7 @@ + InputArguments i=68 i=78 @@ -27390,7 +29319,6 @@ -1 - @@ -27406,7 +29334,6 @@ 1 - @@ -27422,7 +29349,6 @@ 1 - @@ -27438,7 +29364,6 @@ 1 - @@ -27446,6 +29371,7 @@ + OutputArguments i=68 i=78 @@ -27465,7 +29391,6 @@ -1 - @@ -27473,6 +29398,7 @@ + DataSetFolderType i=14478 i=14487 @@ -27487,6 +29413,7 @@ + <DataSetFolderName> i=14479 i=14482 @@ -27501,6 +29428,7 @@ + AddPublishedDataItems i=14480 i=14481 @@ -27509,6 +29437,7 @@ + InputArguments i=68 i=78 @@ -27528,7 +29457,6 @@ -1 - @@ -27544,7 +29472,6 @@ 1 - @@ -27560,7 +29487,6 @@ 1 - @@ -27576,7 +29502,6 @@ 1 - @@ -27584,6 +29509,7 @@ + OutputArguments i=68 i=78 @@ -27603,7 +29529,6 @@ -1 - @@ -27619,7 +29544,6 @@ -1 - @@ -27635,7 +29559,6 @@ 1 - @@ -27643,6 +29566,7 @@ + AddPublishedEvents i=14483 i=14484 @@ -27651,6 +29575,7 @@ + InputArguments i=68 i=78 @@ -27670,7 +29595,6 @@ -1 - @@ -27686,7 +29610,6 @@ -1 - @@ -27702,7 +29625,6 @@ 1 - @@ -27718,7 +29640,6 @@ 1 - @@ -27734,7 +29655,6 @@ 1 - @@ -27750,7 +29670,6 @@ -1 - @@ -27758,6 +29677,7 @@ + OutputArguments i=68 i=78 @@ -27777,7 +29697,6 @@ -1 - @@ -27793,7 +29712,6 @@ -1 - @@ -27801,6 +29719,7 @@ + AddPublishedDataItemsTemplate i=16843 i=16853 @@ -27809,6 +29728,7 @@ + InputArguments i=68 i=78 @@ -27828,7 +29748,6 @@ -1 - @@ -27844,7 +29763,6 @@ -1 - @@ -27860,7 +29778,6 @@ 1 - @@ -27868,6 +29785,7 @@ + OutputArguments i=68 i=78 @@ -27887,7 +29805,6 @@ -1 - @@ -27903,7 +29820,6 @@ 1 - @@ -27911,6 +29827,7 @@ + AddPublishedEventsTemplate i=16882 i=16883 @@ -27919,6 +29836,7 @@ + InputArguments i=68 i=78 @@ -27938,7 +29856,6 @@ -1 - @@ -27954,7 +29871,6 @@ -1 - @@ -27970,7 +29886,6 @@ -1 - @@ -27986,7 +29901,6 @@ 1 - @@ -28002,7 +29916,6 @@ -1 - @@ -28010,6 +29923,7 @@ + OutputArguments i=68 i=78 @@ -28029,7 +29943,6 @@ -1 - @@ -28037,6 +29950,7 @@ + RemovePublishedDataSet i=14486 i=80 @@ -28044,6 +29958,7 @@ + InputArguments i=68 i=78 @@ -28063,7 +29978,6 @@ -1 - @@ -28071,6 +29985,7 @@ + AddDataSetFolder i=16894 i=16922 @@ -28079,6 +29994,7 @@ + InputArguments i=68 i=78 @@ -28098,7 +30014,6 @@ -1 - @@ -28106,6 +30021,7 @@ + OutputArguments i=68 i=78 @@ -28125,7 +30041,6 @@ -1 - @@ -28133,6 +30048,7 @@ + RemoveDataSetFolder i=16924 i=80 @@ -28140,6 +30056,7 @@ + InputArguments i=68 i=78 @@ -28159,7 +30076,6 @@ -1 - @@ -28167,6 +30083,7 @@ + <PublishedDataSetName> i=14489 i=15221 @@ -28176,6 +30093,7 @@ + ConfigurationVersion i=68 i=78 @@ -28183,6 +30101,7 @@ + DataSetMetaData i=68 i=78 @@ -28190,6 +30109,7 @@ + AddPublishedDataItems i=14494 i=14495 @@ -28198,6 +30118,7 @@ + InputArguments i=68 i=78 @@ -28217,7 +30138,6 @@ -1 - @@ -28233,7 +30153,6 @@ 1 - @@ -28249,7 +30168,6 @@ 1 - @@ -28265,7 +30183,6 @@ 1 - @@ -28273,6 +30190,7 @@ + OutputArguments i=68 i=78 @@ -28292,7 +30210,6 @@ -1 - @@ -28308,7 +30225,6 @@ -1 - @@ -28324,7 +30240,6 @@ 1 - @@ -28332,6 +30247,7 @@ + AddPublishedEvents i=14497 i=14498 @@ -28340,6 +30256,7 @@ + InputArguments i=68 i=78 @@ -28359,7 +30276,6 @@ -1 - @@ -28375,7 +30291,6 @@ -1 - @@ -28391,7 +30306,6 @@ 1 - @@ -28407,7 +30321,6 @@ 1 - @@ -28423,7 +30336,6 @@ 1 - @@ -28439,7 +30351,6 @@ -1 - @@ -28447,6 +30358,7 @@ + OutputArguments i=68 i=78 @@ -28466,7 +30378,6 @@ -1 - @@ -28482,7 +30393,6 @@ -1 - @@ -28490,6 +30400,7 @@ + AddPublishedDataItemsTemplate i=16958 i=16959 @@ -28498,6 +30409,7 @@ + InputArguments i=68 i=78 @@ -28517,7 +30429,6 @@ -1 - @@ -28533,7 +30444,6 @@ -1 - @@ -28549,7 +30459,6 @@ 1 - @@ -28557,6 +30466,7 @@ + OutputArguments i=68 i=78 @@ -28576,7 +30486,6 @@ -1 - @@ -28592,7 +30501,6 @@ 1 - @@ -28600,6 +30508,7 @@ + AddPublishedEventsTemplate i=16961 i=16971 @@ -28608,6 +30517,7 @@ + InputArguments i=68 i=78 @@ -28627,7 +30537,6 @@ -1 - @@ -28643,7 +30552,6 @@ -1 - @@ -28659,7 +30567,6 @@ -1 - @@ -28675,7 +30582,6 @@ 1 - @@ -28691,7 +30597,6 @@ -1 - @@ -28699,6 +30604,7 @@ + OutputArguments i=68 i=78 @@ -28718,7 +30624,6 @@ -1 - @@ -28726,6 +30631,7 @@ + RemovePublishedDataSet i=14500 i=80 @@ -28733,6 +30639,7 @@ + InputArguments i=68 i=78 @@ -28752,7 +30659,6 @@ -1 - @@ -28760,6 +30666,7 @@ + AddDataSetFolder i=16995 i=16996 @@ -28768,6 +30675,7 @@ + InputArguments i=68 i=78 @@ -28787,7 +30695,6 @@ -1 - @@ -28795,6 +30702,7 @@ + OutputArguments i=68 i=78 @@ -28814,7 +30722,6 @@ -1 - @@ -28822,6 +30729,7 @@ + RemoveDataSetFolder i=17007 i=80 @@ -28829,6 +30737,7 @@ + InputArguments i=68 i=78 @@ -28848,7 +30757,6 @@ -1 - @@ -28856,6 +30764,7 @@ + PubSubConnectionType i=14595 i=17306 @@ -28873,6 +30782,7 @@ + PublisherId i=68 i=78 @@ -28880,6 +30790,7 @@ + TransportProfileUri i=17710 i=16309 @@ -28888,6 +30799,7 @@ + Selections i=68 i=78 @@ -28895,6 +30807,7 @@ + ConnectionProperties i=68 i=78 @@ -28902,6 +30815,7 @@ + Address i=17202 i=21145 @@ -28910,6 +30824,7 @@ + NetworkInterface i=17576 i=16309 @@ -28918,6 +30833,7 @@ + Selections i=68 i=78 @@ -28925,6 +30841,7 @@ + TransportSettings i=17721 i=80 @@ -28932,6 +30849,7 @@ + <WriterGroupName> i=17311 i=17204 @@ -28949,6 +30867,7 @@ + SecurityMode i=68 i=78 @@ -28956,6 +30875,7 @@ + MaxNetworkMessageSize i=68 i=78 @@ -28963,6 +30883,7 @@ + GroupProperties i=68 i=78 @@ -28970,6 +30891,7 @@ + Status i=17315 i=14643 @@ -28978,6 +30900,7 @@ + State i=63 i=78 @@ -28985,6 +30908,7 @@ + WriterGroupId i=68 i=78 @@ -28992,6 +30916,7 @@ + PublishingInterval i=68 i=78 @@ -28999,6 +30924,7 @@ + KeepAliveTime i=68 i=78 @@ -29006,6 +30932,7 @@ + Priority i=68 i=78 @@ -29013,6 +30940,7 @@ + LocaleIds i=68 i=78 @@ -29020,6 +30948,7 @@ + HeaderLayoutUri i=68 i=78 @@ -29027,6 +30956,7 @@ + <ReaderGroupName> i=17326 i=17302 @@ -29038,6 +30968,7 @@ + SecurityMode i=68 i=78 @@ -29045,6 +30976,7 @@ + MaxNetworkMessageSize i=68 i=78 @@ -29052,6 +30984,7 @@ + GroupProperties i=68 i=78 @@ -29059,6 +30992,7 @@ + Status i=17330 i=14643 @@ -29067,6 +31001,7 @@ + State i=63 i=78 @@ -29074,6 +31009,7 @@ + Status i=14601 i=14643 @@ -29082,6 +31018,7 @@ + State i=63 i=78 @@ -29089,6 +31026,7 @@ + Diagnostics i=19242 i=19243 @@ -29103,6 +31041,7 @@ + DiagnosticsLevel i=63 i=78 @@ -29110,6 +31049,7 @@ + TotalInformation i=19244 i=19245 @@ -29120,6 +31060,7 @@ + Active i=68 i=78 @@ -29127,6 +31068,7 @@ + Classification i=68 i=78 @@ -29134,6 +31076,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29141,6 +31084,7 @@ + TotalError i=19249 i=19250 @@ -29151,6 +31095,7 @@ + Active i=68 i=78 @@ -29158,6 +31103,7 @@ + Classification i=68 i=78 @@ -29165,6 +31111,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29172,12 +31119,14 @@ + Reset i=78 i=19241 + SubError i=63 i=78 @@ -29185,6 +31134,7 @@ + Counters i=19256 i=19261 @@ -29198,6 +31148,7 @@ + StateError i=19257 i=19258 @@ -29208,6 +31159,7 @@ + Active i=68 i=78 @@ -29215,6 +31167,7 @@ + Classification i=68 i=78 @@ -29225,6 +31178,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29235,6 +31189,7 @@ + StateOperationalByMethod i=19262 i=19263 @@ -29245,6 +31200,7 @@ + Active i=68 i=78 @@ -29252,6 +31208,7 @@ + Classification i=68 i=78 @@ -29262,6 +31219,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29272,6 +31230,7 @@ + StateOperationalByParent i=19267 i=19268 @@ -29282,6 +31241,7 @@ + Active i=68 i=78 @@ -29289,6 +31249,7 @@ + Classification i=68 i=78 @@ -29299,6 +31260,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29309,6 +31271,7 @@ + StateOperationalFromError i=19272 i=19273 @@ -29319,6 +31282,7 @@ + Active i=68 i=78 @@ -29326,6 +31290,7 @@ + Classification i=68 i=78 @@ -29336,6 +31301,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29346,6 +31312,7 @@ + StatePausedByParent i=19277 i=19278 @@ -29356,6 +31323,7 @@ + Active i=68 i=78 @@ -29363,6 +31331,7 @@ + Classification i=68 i=78 @@ -29373,6 +31342,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29383,6 +31353,7 @@ + StateDisabledByMethod i=19282 i=19283 @@ -29393,6 +31364,7 @@ + Active i=68 i=78 @@ -29400,6 +31372,7 @@ + Classification i=68 i=78 @@ -29410,6 +31383,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29420,6 +31394,7 @@ + LiveValues i=19287 i=58 @@ -29428,6 +31403,7 @@ + ResolvedAddress i=19288 i=63 @@ -29436,6 +31412,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29446,6 +31423,7 @@ + AddWriterGroup i=17428 i=17456 @@ -29454,6 +31432,7 @@ + InputArguments i=68 i=78 @@ -29473,7 +31452,6 @@ -1 - @@ -29481,6 +31459,7 @@ + OutputArguments i=68 i=78 @@ -29500,7 +31479,6 @@ -1 - @@ -29508,6 +31486,7 @@ + AddReaderGroup i=17507 i=17508 @@ -29516,6 +31495,7 @@ + InputArguments i=68 i=78 @@ -29535,7 +31515,6 @@ -1 - @@ -29543,6 +31522,7 @@ + OutputArguments i=68 i=78 @@ -29562,7 +31542,6 @@ -1 - @@ -29570,6 +31549,7 @@ + RemoveGroup i=14226 i=80 @@ -29577,6 +31557,7 @@ + InputArguments i=68 i=78 @@ -29596,7 +31577,6 @@ -1 - @@ -29604,11 +31584,13 @@ + ConnectionTransportType i=58 + PubSubGroupType i=15926 i=15927 @@ -29620,6 +31602,7 @@ + SecurityMode i=68 i=78 @@ -29627,6 +31610,7 @@ + SecurityGroupId i=68 i=80 @@ -29634,6 +31618,7 @@ + SecurityKeyServices i=68 i=80 @@ -29641,6 +31626,7 @@ + MaxNetworkMessageSize i=68 i=78 @@ -29648,6 +31634,7 @@ + GroupProperties i=68 i=78 @@ -29655,6 +31642,7 @@ + Status i=15266 i=14643 @@ -29663,6 +31651,7 @@ + State i=63 i=78 @@ -29670,6 +31659,7 @@ + WriterGroupType i=17736 i=17737 @@ -29687,6 +31677,7 @@ + WriterGroupId i=68 i=78 @@ -29694,6 +31685,7 @@ + PublishingInterval i=68 i=78 @@ -29701,6 +31693,7 @@ + KeepAliveTime i=68 i=78 @@ -29708,6 +31701,7 @@ + Priority i=68 i=78 @@ -29715,6 +31709,7 @@ + LocaleIds i=68 i=78 @@ -29722,6 +31717,7 @@ + HeaderLayoutUri i=68 i=78 @@ -29729,6 +31725,7 @@ + TransportSettings i=17997 i=80 @@ -29736,6 +31733,7 @@ + MessageSettings i=17998 i=80 @@ -29743,6 +31741,7 @@ + <DataSetWriterName> i=17744 i=17745 @@ -29754,6 +31753,7 @@ + DataSetWriterId i=68 i=78 @@ -29761,6 +31761,7 @@ + DataSetFieldContentMask i=68 i=78 @@ -29768,6 +31769,7 @@ + DataSetWriterProperties i=68 i=78 @@ -29775,6 +31777,7 @@ + Status i=17750 i=14643 @@ -29783,6 +31786,7 @@ + State i=63 i=78 @@ -29790,6 +31794,7 @@ + Diagnostics i=17813 i=17814 @@ -29804,6 +31809,7 @@ + DiagnosticsLevel i=63 i=78 @@ -29811,6 +31817,7 @@ + TotalInformation i=17815 i=17816 @@ -29821,6 +31828,7 @@ + Active i=68 i=78 @@ -29828,6 +31836,7 @@ + Classification i=68 i=78 @@ -29835,6 +31844,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29842,6 +31852,7 @@ + TotalError i=17820 i=17821 @@ -29852,6 +31863,7 @@ + Active i=68 i=78 @@ -29859,6 +31871,7 @@ + Classification i=68 i=78 @@ -29866,6 +31879,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29873,12 +31887,14 @@ + Reset i=78 i=17812 + SubError i=63 i=78 @@ -29886,6 +31902,7 @@ + Counters i=17827 i=17832 @@ -29902,6 +31919,7 @@ + StateError i=17828 i=17829 @@ -29912,6 +31930,7 @@ + Active i=68 i=78 @@ -29919,6 +31938,7 @@ + Classification i=68 i=78 @@ -29929,6 +31949,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29939,6 +31960,7 @@ + StateOperationalByMethod i=17833 i=17834 @@ -29949,6 +31971,7 @@ + Active i=68 i=78 @@ -29956,6 +31979,7 @@ + Classification i=68 i=78 @@ -29966,6 +31990,7 @@ + DiagnosticsLevel i=68 i=78 @@ -29976,6 +32001,7 @@ + StateOperationalByParent i=17838 i=17839 @@ -29986,6 +32012,7 @@ + Active i=68 i=78 @@ -29993,6 +32020,7 @@ + Classification i=68 i=78 @@ -30003,6 +32031,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30013,6 +32042,7 @@ + StateOperationalFromError i=17843 i=17844 @@ -30023,6 +32053,7 @@ + Active i=68 i=78 @@ -30030,6 +32061,7 @@ + Classification i=68 i=78 @@ -30040,6 +32072,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30050,6 +32083,7 @@ + StatePausedByParent i=17848 i=17849 @@ -30060,6 +32094,7 @@ + Active i=68 i=78 @@ -30067,6 +32102,7 @@ + Classification i=68 i=78 @@ -30077,6 +32113,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30087,6 +32124,7 @@ + StateDisabledByMethod i=17854 i=17855 @@ -30097,6 +32135,7 @@ + Active i=68 i=78 @@ -30104,6 +32143,7 @@ + Classification i=68 i=78 @@ -30114,6 +32154,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30124,6 +32165,7 @@ + SentNetworkMessages i=17864 i=17871 @@ -30134,6 +32176,7 @@ + Active i=68 i=78 @@ -30141,6 +32184,7 @@ + Classification i=68 i=78 @@ -30151,6 +32195,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30161,6 +32206,7 @@ + FailedTransmissions i=17878 i=17885 @@ -30171,6 +32217,7 @@ + Active i=68 i=78 @@ -30178,6 +32225,7 @@ + Classification i=68 i=78 @@ -30188,6 +32236,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30198,6 +32247,7 @@ + EncryptionErrors i=17901 i=17902 @@ -30208,6 +32258,7 @@ + Active i=68 i=78 @@ -30215,6 +32266,7 @@ + Classification i=68 i=78 @@ -30225,6 +32277,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30235,6 +32288,7 @@ + LiveValues i=17913 i=17927 @@ -30244,6 +32298,7 @@ + ConfiguredDataSetWriters i=17920 i=63 @@ -30252,6 +32307,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30262,6 +32318,7 @@ + OperationalDataSetWriters i=17934 i=63 @@ -30270,6 +32327,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30280,6 +32338,7 @@ + AddDataSetWriter i=17976 i=17987 @@ -30288,6 +32347,7 @@ + InputArguments i=68 i=78 @@ -30307,7 +32367,6 @@ -1 - @@ -30315,6 +32374,7 @@ + OutputArguments i=68 i=78 @@ -30334,7 +32394,6 @@ -1 - @@ -30342,6 +32401,7 @@ + RemoveDataSetWriter i=17993 i=80 @@ -30349,6 +32409,7 @@ + InputArguments i=68 i=78 @@ -30368,7 +32429,6 @@ -1 - @@ -30376,22 +32436,26 @@ + HasDataSetWriter i=47 IsWriterInGroup + WriterGroupTransportType i=58 + WriterGroupMessageType i=58 + ReaderGroupType i=18076 i=21015 @@ -30403,6 +32467,7 @@ + <DataSetReaderName> i=18077 i=18078 @@ -30421,6 +32486,7 @@ + PublisherId i=68 i=78 @@ -30428,6 +32494,7 @@ + WriterGroupId i=68 i=78 @@ -30435,6 +32502,7 @@ + DataSetWriterId i=68 i=78 @@ -30442,6 +32510,7 @@ + DataSetMetaData i=68 i=78 @@ -30449,6 +32518,7 @@ + DataSetFieldContentMask i=68 i=78 @@ -30456,6 +32526,7 @@ + MessageReceiveTimeout i=68 i=78 @@ -30463,6 +32534,7 @@ + KeyFrameCount i=68 i=78 @@ -30470,6 +32542,7 @@ + HeaderLayoutUri i=68 i=78 @@ -30477,6 +32550,7 @@ + DataSetReaderProperties i=68 i=78 @@ -30484,6 +32558,7 @@ + Status i=18089 i=14643 @@ -30492,6 +32567,7 @@ + State i=63 i=78 @@ -30499,6 +32575,7 @@ + SubscribedDataSet i=15108 i=78 @@ -30506,6 +32583,7 @@ + Diagnostics i=21016 i=21017 @@ -30520,6 +32598,7 @@ + DiagnosticsLevel i=63 i=78 @@ -30527,6 +32606,7 @@ + TotalInformation i=21018 i=21019 @@ -30537,6 +32617,7 @@ + Active i=68 i=78 @@ -30544,6 +32625,7 @@ + Classification i=68 i=78 @@ -30551,6 +32633,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30558,6 +32641,7 @@ + TotalError i=21023 i=21024 @@ -30568,6 +32652,7 @@ + Active i=68 i=78 @@ -30575,6 +32660,7 @@ + Classification i=68 i=78 @@ -30582,6 +32668,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30589,12 +32676,14 @@ + Reset i=78 i=21015 + SubError i=63 i=78 @@ -30602,6 +32691,7 @@ + Counters i=21030 i=21035 @@ -30616,6 +32706,7 @@ + StateError i=21031 i=21032 @@ -30626,6 +32717,7 @@ + Active i=68 i=78 @@ -30633,6 +32725,7 @@ + Classification i=68 i=78 @@ -30643,6 +32736,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30653,6 +32747,7 @@ + StateOperationalByMethod i=21036 i=21037 @@ -30663,6 +32758,7 @@ + Active i=68 i=78 @@ -30670,6 +32766,7 @@ + Classification i=68 i=78 @@ -30680,6 +32777,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30690,6 +32788,7 @@ + StateOperationalByParent i=21041 i=21042 @@ -30700,6 +32799,7 @@ + Active i=68 i=78 @@ -30707,6 +32807,7 @@ + Classification i=68 i=78 @@ -30717,6 +32818,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30727,6 +32829,7 @@ + StateOperationalFromError i=21046 i=21047 @@ -30737,6 +32840,7 @@ + Active i=68 i=78 @@ -30744,6 +32848,7 @@ + Classification i=68 i=78 @@ -30754,6 +32859,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30764,6 +32870,7 @@ + StatePausedByParent i=21051 i=21052 @@ -30774,6 +32881,7 @@ + Active i=68 i=78 @@ -30781,6 +32889,7 @@ + Classification i=68 i=78 @@ -30791,6 +32900,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30801,6 +32911,7 @@ + StateDisabledByMethod i=21056 i=21057 @@ -30811,6 +32922,7 @@ + Active i=68 i=78 @@ -30818,6 +32930,7 @@ + Classification i=68 i=78 @@ -30828,6 +32941,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30838,6 +32952,7 @@ + ReceivedNetworkMessages i=21062 i=21063 @@ -30848,6 +32963,7 @@ + Active i=68 i=78 @@ -30855,6 +32971,7 @@ + Classification i=68 i=78 @@ -30865,6 +32982,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30875,6 +32993,7 @@ + LiveValues i=21076 i=21078 @@ -30884,6 +33003,7 @@ + ConfiguredDataSetReaders i=21077 i=63 @@ -30892,6 +33012,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30902,6 +33023,7 @@ + OperationalDataSetReaders i=21079 i=63 @@ -30910,6 +33032,7 @@ + DiagnosticsLevel i=68 i=78 @@ -30920,6 +33043,7 @@ + TransportSettings i=21090 i=80 @@ -30927,6 +33051,7 @@ + MessageSettings i=21091 i=80 @@ -30934,6 +33059,7 @@ + AddDataSetReader i=21083 i=21084 @@ -30942,6 +33068,7 @@ + InputArguments i=68 i=78 @@ -30961,7 +33088,6 @@ -1 - @@ -30969,6 +33095,7 @@ + OutputArguments i=68 i=78 @@ -30988,7 +33115,6 @@ -1 - @@ -30996,6 +33122,7 @@ + RemoveDataSetReader i=21086 i=80 @@ -31003,6 +33130,7 @@ + InputArguments i=68 i=78 @@ -31022,7 +33150,6 @@ -1 - @@ -31030,22 +33157,26 @@ + HasDataSetReader i=47 IsReaderInGroup + ReaderGroupTransportType i=58 + ReaderGroupMessageType i=58 + DataSetWriterType i=21092 i=21093 @@ -31059,6 +33190,7 @@ + DataSetWriterId i=68 i=78 @@ -31066,6 +33198,7 @@ + DataSetFieldContentMask i=68 i=78 @@ -31073,6 +33206,7 @@ + KeyFrameCount i=68 i=80 @@ -31080,6 +33214,7 @@ + DataSetWriterProperties i=68 i=78 @@ -31087,6 +33222,7 @@ + TransportSettings i=15305 i=80 @@ -31094,6 +33230,7 @@ + MessageSettings i=21096 i=80 @@ -31101,6 +33238,7 @@ + Status i=15300 i=14643 @@ -31109,6 +33247,7 @@ + State i=63 i=78 @@ -31116,6 +33255,7 @@ + Diagnostics i=19551 i=19552 @@ -31130,6 +33270,7 @@ + DiagnosticsLevel i=63 i=78 @@ -31137,6 +33278,7 @@ + TotalInformation i=19553 i=19554 @@ -31147,6 +33289,7 @@ + Active i=68 i=78 @@ -31154,6 +33297,7 @@ + Classification i=68 i=78 @@ -31161,6 +33305,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31168,6 +33313,7 @@ + TotalError i=19558 i=19559 @@ -31178,6 +33324,7 @@ + Active i=68 i=78 @@ -31185,6 +33332,7 @@ + Classification i=68 i=78 @@ -31192,6 +33340,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31199,12 +33348,14 @@ + Reset i=78 i=19550 + SubError i=63 i=78 @@ -31212,6 +33363,7 @@ + Counters i=19565 i=19570 @@ -31226,6 +33378,7 @@ + StateError i=19566 i=19567 @@ -31236,6 +33389,7 @@ + Active i=68 i=78 @@ -31243,6 +33397,7 @@ + Classification i=68 i=78 @@ -31253,6 +33408,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31263,6 +33419,7 @@ + StateOperationalByMethod i=19571 i=19572 @@ -31273,6 +33430,7 @@ + Active i=68 i=78 @@ -31280,6 +33438,7 @@ + Classification i=68 i=78 @@ -31290,6 +33449,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31300,6 +33460,7 @@ + StateOperationalByParent i=19576 i=19577 @@ -31310,6 +33471,7 @@ + Active i=68 i=78 @@ -31317,6 +33479,7 @@ + Classification i=68 i=78 @@ -31327,6 +33490,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31337,6 +33501,7 @@ + StateOperationalFromError i=19581 i=19582 @@ -31347,6 +33512,7 @@ + Active i=68 i=78 @@ -31354,6 +33520,7 @@ + Classification i=68 i=78 @@ -31364,6 +33531,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31374,6 +33542,7 @@ + StatePausedByParent i=19586 i=19587 @@ -31384,6 +33553,7 @@ + Active i=68 i=78 @@ -31391,6 +33561,7 @@ + Classification i=68 i=78 @@ -31401,6 +33572,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31411,6 +33583,7 @@ + StateDisabledByMethod i=19591 i=19592 @@ -31421,6 +33594,7 @@ + Active i=68 i=78 @@ -31428,6 +33602,7 @@ + Classification i=68 i=78 @@ -31438,6 +33613,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31448,6 +33624,7 @@ + FailedDataSetMessages i=19597 i=19598 @@ -31458,6 +33635,7 @@ + Active i=68 i=78 @@ -31465,6 +33643,7 @@ + Classification i=68 i=78 @@ -31475,6 +33654,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31485,6 +33665,7 @@ + LiveValues i=58 i=78 @@ -31492,16 +33673,19 @@ + DataSetWriterTransportType i=58 + DataSetWriterMessageType i=58 + DataSetReaderType i=21097 i=21098 @@ -31526,6 +33710,7 @@ + PublisherId i=68 i=78 @@ -31533,6 +33718,7 @@ + WriterGroupId i=68 i=78 @@ -31540,6 +33726,7 @@ + DataSetWriterId i=68 i=78 @@ -31547,6 +33734,7 @@ + DataSetMetaData i=68 i=78 @@ -31554,6 +33742,7 @@ + DataSetFieldContentMask i=68 i=78 @@ -31561,6 +33750,7 @@ + MessageReceiveTimeout i=68 i=78 @@ -31568,6 +33758,7 @@ + KeyFrameCount i=68 i=78 @@ -31575,6 +33766,7 @@ + HeaderLayoutUri i=68 i=78 @@ -31582,6 +33774,7 @@ + SecurityMode i=68 i=80 @@ -31589,6 +33782,7 @@ + SecurityGroupId i=68 i=80 @@ -31596,6 +33790,7 @@ + SecurityKeyServices i=68 i=80 @@ -31603,6 +33798,7 @@ + DataSetReaderProperties i=68 i=78 @@ -31610,6 +33806,7 @@ + TransportSettings i=15319 i=80 @@ -31617,6 +33814,7 @@ + MessageSettings i=21104 i=80 @@ -31624,6 +33822,7 @@ + Status i=15308 i=14643 @@ -31632,6 +33831,7 @@ + State i=63 i=78 @@ -31639,6 +33839,7 @@ + Diagnostics i=19610 i=19611 @@ -31653,6 +33854,7 @@ + DiagnosticsLevel i=63 i=78 @@ -31660,6 +33862,7 @@ + TotalInformation i=19612 i=19613 @@ -31670,6 +33873,7 @@ + Active i=68 i=78 @@ -31677,6 +33881,7 @@ + Classification i=68 i=78 @@ -31684,6 +33889,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31691,6 +33897,7 @@ + TotalError i=19617 i=19618 @@ -31701,6 +33908,7 @@ + Active i=68 i=78 @@ -31708,6 +33916,7 @@ + Classification i=68 i=78 @@ -31715,6 +33924,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31722,12 +33932,14 @@ + Reset i=78 i=19609 + SubError i=63 i=78 @@ -31735,6 +33947,7 @@ + Counters i=19624 i=19629 @@ -31749,6 +33962,7 @@ + StateError i=19625 i=19626 @@ -31759,6 +33973,7 @@ + Active i=68 i=78 @@ -31766,6 +33981,7 @@ + Classification i=68 i=78 @@ -31776,6 +33992,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31786,6 +34003,7 @@ + StateOperationalByMethod i=19630 i=19631 @@ -31796,6 +34014,7 @@ + Active i=68 i=78 @@ -31803,6 +34022,7 @@ + Classification i=68 i=78 @@ -31813,6 +34033,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31823,6 +34044,7 @@ + StateOperationalByParent i=19635 i=19636 @@ -31833,6 +34055,7 @@ + Active i=68 i=78 @@ -31840,6 +34063,7 @@ + Classification i=68 i=78 @@ -31850,6 +34074,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31860,6 +34085,7 @@ + StateOperationalFromError i=19640 i=19641 @@ -31870,6 +34096,7 @@ + Active i=68 i=78 @@ -31877,6 +34104,7 @@ + Classification i=68 i=78 @@ -31887,6 +34115,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31897,6 +34126,7 @@ + StatePausedByParent i=19645 i=19646 @@ -31907,6 +34137,7 @@ + Active i=68 i=78 @@ -31914,6 +34145,7 @@ + Classification i=68 i=78 @@ -31924,6 +34156,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31934,6 +34167,7 @@ + StateDisabledByMethod i=19650 i=19651 @@ -31944,6 +34178,7 @@ + Active i=68 i=78 @@ -31951,6 +34186,7 @@ + Classification i=68 i=78 @@ -31961,6 +34197,7 @@ + DiagnosticsLevel i=68 i=78 @@ -31971,6 +34208,7 @@ + FailedDataSetMessages i=19656 i=19657 @@ -31981,6 +34219,7 @@ + Active i=68 i=78 @@ -31988,6 +34227,7 @@ + Classification i=68 i=78 @@ -31998,6 +34238,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32008,6 +34249,7 @@ + LiveValues i=58 i=78 @@ -32015,6 +34257,7 @@ + SubscribedDataSet i=15108 i=78 @@ -32022,6 +34265,7 @@ + CreateTargetVariables i=17387 i=17388 @@ -32030,6 +34274,7 @@ + InputArguments i=68 i=78 @@ -32049,7 +34294,6 @@ -1 - @@ -32065,7 +34309,6 @@ 1 - @@ -32073,6 +34316,7 @@ + OutputArguments i=68 i=78 @@ -32092,7 +34336,6 @@ 1 - @@ -32100,6 +34343,7 @@ + CreateDataSetMirror i=17390 i=17391 @@ -32108,6 +34352,7 @@ + InputArguments i=68 i=78 @@ -32127,7 +34372,6 @@ -1 - @@ -32143,7 +34387,6 @@ 1 - @@ -32151,6 +34394,7 @@ + OutputArguments i=68 i=78 @@ -32170,7 +34414,6 @@ -1 - @@ -32178,21 +34421,25 @@ + DataSetReaderTransportType i=58 + DataSetReaderMessageType i=58 + SubscribedDataSetType i=58 + TargetVariablesType i=15114 i=15115 @@ -32201,6 +34448,7 @@ + TargetVariables i=68 i=78 @@ -32208,6 +34456,7 @@ + AddTargetVariables i=15116 i=15117 @@ -32216,6 +34465,7 @@ + InputArguments i=68 i=78 @@ -32235,7 +34485,6 @@ -1 - @@ -32251,7 +34500,6 @@ 1 - @@ -32259,6 +34507,7 @@ + OutputArguments i=68 i=78 @@ -32278,7 +34527,6 @@ 1 - @@ -32286,6 +34534,7 @@ + RemoveTargetVariables i=15119 i=15120 @@ -32294,6 +34543,7 @@ + InputArguments i=68 i=78 @@ -32313,7 +34563,6 @@ -1 - @@ -32329,7 +34578,6 @@ 1 - @@ -32337,6 +34585,7 @@ + OutputArguments i=68 i=78 @@ -32356,7 +34605,6 @@ 1 - @@ -32364,11 +34612,13 @@ + SubscribedDataSetMirrorType i=15108 + PubSubStatusType i=14644 i=14645 @@ -32377,6 +34627,7 @@ + State i=63 i=78 @@ -32384,18 +34635,21 @@ + Enable i=80 i=14643 + Disable i=80 i=14643 + PubSubDiagnosticsType i=19678 i=19679 @@ -32408,6 +34662,7 @@ + DiagnosticsLevel i=63 i=78 @@ -32415,6 +34670,7 @@ + TotalInformation i=19680 i=19681 @@ -32425,6 +34681,7 @@ + Active i=68 i=78 @@ -32432,6 +34689,7 @@ + Classification i=68 i=78 @@ -32439,6 +34697,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32446,6 +34705,7 @@ + TotalError i=19685 i=19686 @@ -32456,6 +34716,7 @@ + Active i=68 i=78 @@ -32463,6 +34724,7 @@ + Classification i=68 i=78 @@ -32470,6 +34732,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32477,12 +34740,14 @@ + Reset i=78 i=19677 + SubError i=63 i=78 @@ -32490,6 +34755,7 @@ + Counters i=19692 i=19697 @@ -32503,6 +34769,7 @@ + StateError i=19693 i=19694 @@ -32513,6 +34780,7 @@ + Active i=68 i=78 @@ -32520,6 +34788,7 @@ + Classification i=68 i=78 @@ -32530,6 +34799,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32540,6 +34810,7 @@ + StateOperationalByMethod i=19698 i=19699 @@ -32550,6 +34821,7 @@ + Active i=68 i=78 @@ -32557,6 +34829,7 @@ + Classification i=68 i=78 @@ -32567,6 +34840,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32577,6 +34851,7 @@ + StateOperationalByParent i=19703 i=19704 @@ -32587,6 +34862,7 @@ + Active i=68 i=78 @@ -32594,6 +34870,7 @@ + Classification i=68 i=78 @@ -32604,6 +34881,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32614,6 +34892,7 @@ + StateOperationalFromError i=19708 i=19709 @@ -32624,6 +34903,7 @@ + Active i=68 i=78 @@ -32631,6 +34911,7 @@ + Classification i=68 i=78 @@ -32641,6 +34922,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32651,6 +34933,7 @@ + StatePausedByParent i=19713 i=19714 @@ -32661,6 +34944,7 @@ + Active i=68 i=78 @@ -32668,6 +34952,7 @@ + Classification i=68 i=78 @@ -32678,6 +34963,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32688,6 +34974,7 @@ + StateDisabledByMethod i=19718 i=19719 @@ -32698,6 +34985,7 @@ + Active i=68 i=78 @@ -32705,6 +34993,7 @@ + Classification i=68 i=78 @@ -32715,6 +35004,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32725,6 +35015,7 @@ + LiveValues i=58 i=78 @@ -32732,11 +35023,12 @@ + DiagnosticsLevel i=19724 i=29 - + @@ -32745,6 +35037,7 @@ + EnumStrings i=68 i=78 @@ -32781,6 +35074,7 @@ + PubSubDiagnosticsCounterType i=19726 i=19727 @@ -32790,6 +35084,7 @@ + Active i=68 i=78 @@ -32797,6 +35092,7 @@ + Classification i=68 i=78 @@ -32804,6 +35100,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32811,6 +35108,7 @@ + TimeFirstChange i=68 i=80 @@ -32818,16 +35116,18 @@ + PubSubDiagnosticsCounterClassification i=19731 i=29 - + + EnumStrings i=68 i=78 @@ -32849,12 +35149,14 @@ + PubSubDiagnosticsRootType i=19777 i=19677 + LiveValues i=19778 i=19780 @@ -32866,6 +35168,7 @@ + ConfiguredDataSetWriters i=19779 i=63 @@ -32874,6 +35177,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32884,6 +35188,7 @@ + ConfiguredDataSetReaders i=19781 i=63 @@ -32892,6 +35197,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32902,6 +35208,7 @@ + OperationalDataSetWriters i=19783 i=63 @@ -32910,6 +35217,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32920,6 +35228,7 @@ + OperationalDataSetReaders i=19785 i=63 @@ -32928,6 +35237,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32938,12 +35248,14 @@ + PubSubDiagnosticsConnectionType i=19831 i=19677 + LiveValues i=19832 i=58 @@ -32952,6 +35264,7 @@ + ResolvedAddress i=19833 i=63 @@ -32960,6 +35273,7 @@ + DiagnosticsLevel i=68 i=78 @@ -32970,6 +35284,7 @@ + PubSubDiagnosticsWriterGroupType i=19848 i=19879 @@ -32977,6 +35292,7 @@ + Counters i=19880 i=19885 @@ -32987,6 +35303,7 @@ + SentNetworkMessages i=19881 i=19882 @@ -32997,6 +35314,7 @@ + Active i=68 i=78 @@ -33004,6 +35322,7 @@ + Classification i=68 i=78 @@ -33014,6 +35333,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33024,6 +35344,7 @@ + FailedTransmissions i=19886 i=19887 @@ -33034,6 +35355,7 @@ + Active i=68 i=78 @@ -33041,6 +35363,7 @@ + Classification i=68 i=78 @@ -33051,6 +35374,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33061,6 +35385,7 @@ + EncryptionErrors i=19891 i=19892 @@ -33071,6 +35396,7 @@ + Active i=68 i=78 @@ -33078,6 +35404,7 @@ + Classification i=68 i=78 @@ -33088,6 +35415,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33098,6 +35426,7 @@ + LiveValues i=19895 i=19897 @@ -33109,6 +35438,7 @@ + ConfiguredDataSetWriters i=19896 i=63 @@ -33117,6 +35447,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33127,6 +35458,7 @@ + OperationalDataSetWriters i=19898 i=63 @@ -33135,6 +35467,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33145,6 +35478,7 @@ + SecurityTokenID i=19900 i=63 @@ -33153,6 +35487,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33163,6 +35498,7 @@ + TimeToNextTokenID i=19902 i=63 @@ -33171,6 +35507,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33181,6 +35518,7 @@ + PubSubDiagnosticsReaderGroupType i=19917 i=19948 @@ -33188,6 +35526,7 @@ + Counters i=19949 i=19954 @@ -33198,6 +35537,7 @@ + ReceivedNetworkMessages i=19950 i=19951 @@ -33208,6 +35548,7 @@ + Active i=68 i=78 @@ -33215,6 +35556,7 @@ + Classification i=68 i=78 @@ -33225,6 +35567,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33235,6 +35578,7 @@ + ReceivedInvalidNetworkMessages i=19955 i=19956 @@ -33245,6 +35589,7 @@ + Active i=68 i=78 @@ -33252,6 +35597,7 @@ + Classification i=68 i=78 @@ -33262,6 +35608,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33272,6 +35619,7 @@ + DecryptionErrors i=19960 i=19961 @@ -33282,6 +35630,7 @@ + Active i=68 i=78 @@ -33289,6 +35638,7 @@ + Classification i=68 i=78 @@ -33299,6 +35649,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33309,6 +35660,7 @@ + LiveValues i=19964 i=19966 @@ -33318,6 +35670,7 @@ + ConfiguredDataSetReaders i=19965 i=63 @@ -33326,6 +35679,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33336,6 +35690,7 @@ + OperationalDataSetReaders i=19967 i=63 @@ -33344,6 +35699,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33354,6 +35710,7 @@ + PubSubDiagnosticsDataSetWriterType i=19982 i=20013 @@ -33361,6 +35718,7 @@ + Counters i=20014 i=58 @@ -33369,6 +35727,7 @@ + FailedDataSetMessages i=20015 i=20016 @@ -33379,6 +35738,7 @@ + Active i=68 i=78 @@ -33386,6 +35746,7 @@ + Classification i=68 i=78 @@ -33396,6 +35757,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33406,6 +35768,7 @@ + LiveValues i=20019 i=20021 @@ -33417,6 +35780,7 @@ + MessageSequenceNumber i=20020 i=63 @@ -33425,6 +35789,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33435,6 +35800,7 @@ + StatusCode i=20022 i=63 @@ -33443,6 +35809,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33453,6 +35820,7 @@ + MajorVersion i=20024 i=63 @@ -33461,6 +35829,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33471,6 +35840,7 @@ + MinorVersion i=20026 i=63 @@ -33479,6 +35849,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33489,6 +35860,7 @@ + PubSubDiagnosticsDataSetReaderType i=20041 i=20072 @@ -33496,6 +35868,7 @@ + Counters i=20073 i=20078 @@ -33505,6 +35878,7 @@ + FailedDataSetMessages i=20074 i=20075 @@ -33515,6 +35889,7 @@ + Active i=68 i=78 @@ -33522,6 +35897,7 @@ + Classification i=68 i=78 @@ -33532,6 +35908,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33542,6 +35919,7 @@ + DecryptionErrors i=20079 i=20080 @@ -33552,6 +35930,7 @@ + Active i=68 i=78 @@ -33559,6 +35938,7 @@ + Classification i=68 i=78 @@ -33569,6 +35949,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33579,6 +35960,7 @@ + LiveValues i=20083 i=20085 @@ -33592,6 +35974,7 @@ + MessageSequenceNumber i=20084 i=63 @@ -33600,6 +35983,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33610,6 +35994,7 @@ + StatusCode i=20086 i=63 @@ -33618,6 +36003,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33628,6 +36014,7 @@ + MajorVersion i=20088 i=63 @@ -33636,6 +36023,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33646,6 +36034,7 @@ + MinorVersion i=20090 i=63 @@ -33654,6 +36043,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33664,6 +36054,7 @@ + SecurityTokenID i=20092 i=63 @@ -33672,6 +36063,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33682,6 +36074,7 @@ + TimeToNextTokenID i=20094 i=63 @@ -33690,6 +36083,7 @@ + DiagnosticsLevel i=68 i=78 @@ -33700,6 +36094,7 @@ + PubSubStatusEventType i=15545 i=15546 @@ -33708,6 +36103,7 @@ + ConnectionId i=68 i=78 @@ -33715,6 +36111,7 @@ + GroupId i=68 i=78 @@ -33722,6 +36119,7 @@ + State i=68 i=78 @@ -33729,6 +36127,7 @@ + PubSubTransportLimitsExceedEventType i=15561 i=15562 @@ -33736,6 +36135,7 @@ + Actual i=68 i=78 @@ -33743,6 +36143,7 @@ + Maximum i=68 i=78 @@ -33750,12 +36151,14 @@ + PubSubCommunicationFailureEventType i=15576 i=15535 + Error i=68 i=78 @@ -33763,6 +36166,7 @@ + UadpWriterGroupMessageType i=21106 i=21107 @@ -33773,6 +36177,7 @@ + GroupVersion i=68 i=78 @@ -33780,6 +36185,7 @@ + DataSetOrdering i=68 i=78 @@ -33787,6 +36193,7 @@ + NetworkMessageContentMask i=68 i=78 @@ -33794,6 +36201,7 @@ + SamplingOffset i=68 i=80 @@ -33801,6 +36209,7 @@ + PublishingOffset i=68 i=78 @@ -33808,6 +36217,7 @@ + UadpDataSetWriterMessageType i=21112 i=21113 @@ -33817,6 +36227,7 @@ + DataSetMessageContentMask i=68 i=78 @@ -33824,6 +36235,7 @@ + ConfiguredSize i=68 i=78 @@ -33831,6 +36243,7 @@ + NetworkMessageNumber i=68 i=78 @@ -33838,6 +36251,7 @@ + DataSetOffset i=68 i=78 @@ -33845,6 +36259,7 @@ + UadpDataSetReaderMessageType i=21117 i=21119 @@ -33859,6 +36274,7 @@ + GroupVersion i=68 i=78 @@ -33866,6 +36282,7 @@ + NetworkMessageNumber i=68 i=78 @@ -33873,6 +36290,7 @@ + DataSetOffset i=68 i=78 @@ -33880,6 +36298,7 @@ + DataSetClassId i=68 i=78 @@ -33887,6 +36306,7 @@ + NetworkMessageContentMask i=68 i=78 @@ -33894,6 +36314,7 @@ + DataSetMessageContentMask i=68 i=78 @@ -33901,6 +36322,7 @@ + PublishingInterval i=68 i=78 @@ -33908,6 +36330,7 @@ + ProcessingOffset i=68 i=78 @@ -33915,6 +36338,7 @@ + ReceiveOffset i=68 i=78 @@ -33922,12 +36346,14 @@ + JsonWriterGroupMessageType i=21127 i=17998 + NetworkMessageContentMask i=68 i=78 @@ -33935,12 +36361,14 @@ + JsonDataSetWriterMessageType i=21129 i=21096 + DataSetMessageContentMask i=68 i=78 @@ -33948,6 +36376,7 @@ + JsonDataSetReaderMessageType i=21131 i=21132 @@ -33955,6 +36384,7 @@ + NetworkMessageContentMask i=68 i=78 @@ -33962,6 +36392,7 @@ + DataSetMessageContentMask i=68 i=78 @@ -33969,12 +36400,14 @@ + DatagramConnectionTransportType i=15072 i=17721 + DiscoveryAddress i=15154 i=21145 @@ -33983,6 +36416,7 @@ + NetworkInterface i=17579 i=16309 @@ -33991,6 +36425,7 @@ + Selections i=68 i=78 @@ -33998,6 +36433,7 @@ + DatagramWriterGroupTransportType i=21134 i=21135 @@ -34005,6 +36441,7 @@ + MessageRepeatCount i=68 i=80 @@ -34012,6 +36449,7 @@ + MessageRepeatDelay i=68 i=80 @@ -34019,6 +36457,7 @@ + BrokerConnectionTransportType i=15156 i=15178 @@ -34026,6 +36465,7 @@ + ResourceUri i=68 i=78 @@ -34033,6 +36473,7 @@ + AuthenticationProfileUri i=68 i=78 @@ -34040,6 +36481,7 @@ + BrokerWriterGroupTransportType i=21137 i=15246 @@ -34049,6 +36491,7 @@ + QueueName i=68 i=78 @@ -34056,6 +36499,7 @@ + ResourceUri i=68 i=78 @@ -34063,6 +36507,7 @@ + AuthenticationProfileUri i=68 i=78 @@ -34070,6 +36515,7 @@ + RequestedDeliveryGuarantee i=68 i=78 @@ -34077,6 +36523,7 @@ + BrokerDataSetWriterTransportType i=21139 i=21140 @@ -34088,6 +36535,7 @@ + QueueName i=68 i=78 @@ -34095,6 +36543,7 @@ + MetaDataQueueName i=68 i=78 @@ -34102,6 +36551,7 @@ + ResourceUri i=68 i=78 @@ -34109,6 +36559,7 @@ + AuthenticationProfileUri i=68 i=78 @@ -34116,6 +36567,7 @@ + RequestedDeliveryGuarantee i=68 i=78 @@ -34123,6 +36575,7 @@ + MetaDataUpdateTime i=68 i=78 @@ -34130,6 +36583,7 @@ + BrokerDataSetReaderTransportType i=21143 i=15334 @@ -34140,6 +36594,7 @@ + QueueName i=68 i=78 @@ -34147,6 +36602,7 @@ + ResourceUri i=68 i=78 @@ -34154,6 +36610,7 @@ + AuthenticationProfileUri i=68 i=78 @@ -34161,6 +36618,7 @@ + RequestedDeliveryGuarantee i=68 i=78 @@ -34168,6 +36626,7 @@ + MetaDataQueueName i=68 i=78 @@ -34175,12 +36634,14 @@ + NetworkAddressType i=21146 i=58 + NetworkInterface i=17582 i=16309 @@ -34189,6 +36650,7 @@ + Selections i=68 i=78 @@ -34196,12 +36658,14 @@ + NetworkAddressUrlType i=21149 i=21145 + Url i=63 i=78 @@ -34209,11 +36673,12 @@ + IdType i=7591 i=29 - + @@ -34221,6 +36686,7 @@ + EnumStrings i=68 i=78 @@ -34252,11 +36718,12 @@ + NodeClass i=11878 i=29 - + @@ -34269,6 +36736,7 @@ + EnumValues i=68 i=78 @@ -34288,7 +36756,6 @@ Unspecified - @@ -34304,7 +36771,6 @@ Object - @@ -34320,7 +36786,6 @@ Variable - @@ -34336,7 +36801,6 @@ Method - @@ -34352,7 +36816,6 @@ ObjectType - @@ -34368,7 +36831,6 @@ VariableType - @@ -34384,7 +36846,6 @@ ReferenceType - @@ -34400,7 +36861,6 @@ DataType - @@ -34416,7 +36876,6 @@ View - @@ -34424,11 +36883,12 @@ + PermissionType i=15030 i=7 - + @@ -34449,6 +36909,7 @@ + OptionSetValues i=68 i=78 @@ -34545,11 +37006,12 @@ + AccessLevelType i=15032 i=3 - + @@ -34560,6 +37022,7 @@ + OptionSetValues i=68 i=78 @@ -34606,11 +37069,12 @@ + AccessLevelExType i=15407 i=7 - + @@ -34624,6 +37088,7 @@ + OptionSetValues i=68 i=78 @@ -34690,17 +37155,19 @@ + EventNotifierType i=15034 i=3 - + + OptionSetValues i=68 i=78 @@ -34732,17 +37199,19 @@ + AccessRestrictionType i=15035 i=7 - + + OptionSetValues i=68 i=78 @@ -34769,31 +37238,35 @@ + RolePermissionType i=22 - + + DataTypeDefinition i=22 + StructureType i=14528 i=29 - + + EnumStrings i=68 i=78 @@ -34820,10 +37293,11 @@ + StructureField i=22 - + @@ -34834,10 +37308,11 @@ + StructureDefinition i=97 - + @@ -34845,18 +37320,20 @@ + EnumDefinition i=97 - + + Argument i=22 - + @@ -34865,102 +37342,118 @@ + EnumValueType i=22 - + + EnumField i=7594 - + + OptionSet i=22 - + + Union i=22 + NormalizedString i=12 + DecimalString i=12 + DurationString i=12 + TimeString i=12 + DateString i=12 + Duration i=11 + UtcTime i=13 + LocaleId i=12 + TimeZoneDataType i=22 - + + Index i=7 + IntegerId i=7 + ApplicationType i=7597 i=29 - + @@ -34968,6 +37461,7 @@ + EnumStrings i=68 i=78 @@ -34999,10 +37493,11 @@ + ApplicationDescription i=22 - + @@ -35013,15 +37508,17 @@ + VersionTime i=7 + ServerOnNetwork i=22 - + @@ -35029,16 +37526,18 @@ + ApplicationInstanceCertificate i=15 + MessageSecurityMode i=7595 i=29 - + @@ -35046,6 +37545,7 @@ + EnumStrings i=68 i=78 @@ -35077,11 +37577,12 @@ + UserTokenType i=7596 i=29 - + @@ -35089,6 +37590,7 @@ + EnumStrings i=68 i=78 @@ -35120,10 +37622,11 @@ + UserTokenPolicy i=22 - + @@ -35132,10 +37635,11 @@ + EndpointDescription i=22 - + @@ -35147,10 +37651,11 @@ + RegisteredServer i=22 - + @@ -35162,30 +37667,34 @@ + DiscoveryConfiguration i=22 + MdnsDiscoveryConfiguration i=12890 - + + SecurityTokenRequestType i=7598 i=29 - + + EnumStrings i=68 i=78 @@ -35207,65 +37716,73 @@ + SignedSoftwareCertificate i=22 - + + SessionAuthenticationToken i=17 + UserIdentityToken i=22 - + + AnonymousIdentityToken i=316 + UserNameIdentityToken i=316 - + + X509IdentityToken i=316 - + + IssuedIdentityToken i=316 - + + NodeAttributesMask i=11881 i=29 - + @@ -35304,6 +37821,7 @@ + EnumValues i=68 i=78 @@ -35323,7 +37841,6 @@ None - @@ -35339,7 +37856,6 @@ AccessLevel - @@ -35355,7 +37871,6 @@ ArrayDimensions - @@ -35371,7 +37886,6 @@ BrowseName - @@ -35387,7 +37901,6 @@ ContainsNoLoops - @@ -35403,7 +37916,6 @@ DataType - @@ -35419,7 +37931,6 @@ Description - @@ -35435,7 +37946,6 @@ DisplayName - @@ -35451,7 +37961,6 @@ EventNotifier - @@ -35467,7 +37976,6 @@ Executable - @@ -35483,7 +37991,6 @@ Historizing - @@ -35499,7 +38006,6 @@ InverseName - @@ -35515,7 +38021,6 @@ IsAbstract - @@ -35531,7 +38036,6 @@ MinimumSamplingInterval - @@ -35547,7 +38051,6 @@ NodeClass - @@ -35563,7 +38066,6 @@ NodeId - @@ -35579,7 +38081,6 @@ Symmetric - @@ -35595,7 +38096,6 @@ UserAccessLevel - @@ -35611,7 +38111,6 @@ UserExecutable - @@ -35627,7 +38126,6 @@ UserWriteMask - @@ -35643,7 +38141,6 @@ ValueRank - @@ -35659,7 +38156,6 @@ WriteMask - @@ -35675,7 +38171,6 @@ Value - @@ -35691,7 +38186,6 @@ DataTypeDefinition - @@ -35707,7 +38201,6 @@ RolePermissions - @@ -35723,7 +38216,6 @@ AccessRestrictions - @@ -35739,7 +38231,6 @@ All - @@ -35755,7 +38246,6 @@ BaseNode - @@ -35771,7 +38261,6 @@ Object - @@ -35787,7 +38276,6 @@ ObjectType - @@ -35803,7 +38291,6 @@ Variable - @@ -35819,7 +38306,6 @@ VariableType - @@ -35835,7 +38321,6 @@ Method - @@ -35851,7 +38336,6 @@ ReferenceType - @@ -35867,7 +38351,6 @@ View - @@ -35875,10 +38358,11 @@ + AddNodesItem i=22 - + @@ -35889,10 +38373,11 @@ + AddReferencesItem i=22 - + @@ -35902,19 +38387,21 @@ + DeleteNodesItem i=22 - + + DeleteReferencesItem i=22 - + @@ -35923,11 +38410,12 @@ + AttributeWriteMask i=15036 i=7 - + @@ -35957,6 +38445,7 @@ + OptionSetValues i=68 i=78 @@ -36098,15 +38587,17 @@ + ContinuationPoint i=15 + RelativePathElement i=22 - + @@ -36114,38 +38605,44 @@ + RelativePath i=22 - + + Counter i=7 + NumericRange i=12 + Time i=12 + Date i=13 + EndpointConfiguration i=22 - + @@ -36158,11 +38655,12 @@ + FilterOperator i=7605 i=29 - + @@ -36184,6 +38682,7 @@ + EnumStrings i=68 i=78 @@ -36285,48 +38784,54 @@ + ContentFilterElement i=22 - + + ContentFilter i=22 - + + FilterOperand i=22 + ElementOperand i=589 - + + LiteralOperand i=589 - + + AttributeOperand i=589 - + @@ -36335,10 +38840,11 @@ + SimpleAttributeOperand i=589 - + @@ -36346,19 +38852,21 @@ + HistoryEvent i=22 - + + HistoryUpdateType i=11884 i=29 - + @@ -36366,6 +38874,7 @@ + EnumValues i=68 i=78 @@ -36385,7 +38894,6 @@ Insert - @@ -36401,7 +38909,6 @@ Replace - @@ -36417,7 +38924,6 @@ Update - @@ -36433,7 +38939,6 @@ Delete - @@ -36441,11 +38946,12 @@ + PerformUpdateType i=11885 i=29 - + @@ -36453,6 +38959,7 @@ + EnumValues i=68 i=78 @@ -36472,7 +38979,6 @@ Insert - @@ -36488,7 +38994,6 @@ Replace - @@ -36504,7 +39009,6 @@ Update - @@ -36520,7 +39024,6 @@ Remove - @@ -36528,24 +39031,27 @@ + MonitoringFilter i=22 + EventFilter i=719 - + + AggregateConfiguration i=22 - + @@ -36554,18 +39060,20 @@ + HistoryEventFieldList i=22 - + + BuildInfo i=22 - + @@ -36575,11 +39083,12 @@ + RedundancySupport i=7611 i=29 - + @@ -36589,6 +39098,7 @@ + EnumStrings i=68 i=78 @@ -36630,11 +39140,12 @@ + ServerState i=7612 i=29 - + @@ -36646,6 +39157,7 @@ + EnumStrings i=68 i=78 @@ -36697,37 +39209,41 @@ + RedundantServerDataType i=22 - + + EndpointUrlListDataType i=22 - + + NetworkGroupDataType i=22 - + + SamplingIntervalDiagnosticsDataType i=22 - + @@ -36735,10 +39251,11 @@ + ServerDiagnosticsSummaryDataType i=22 - + @@ -36754,10 +39271,11 @@ + ServerStatusDataType i=22 - + @@ -36767,10 +39285,11 @@ + SessionDiagnosticsDataType i=22 - + @@ -36817,10 +39336,11 @@ + SessionSecurityDiagnosticsDataType i=22 - + @@ -36833,28 +39353,31 @@ + ServiceCounterDataType i=22 - + + StatusResult i=22 - + + SubscriptionDiagnosticsDataType i=22 - + @@ -36889,38 +39412,42 @@ + ModelChangeStructureDataType i=22 - + + SemanticChangeStructureDataType i=22 - + + Range i=22 - + + EUInformation i=22 - + @@ -36928,17 +39455,19 @@ + AxisScaleEnumeration i=12078 i=29 - + + EnumStrings i=68 i=78 @@ -36965,28 +39494,31 @@ + ComplexNumberType i=22 - + + DoubleComplexNumberType i=22 - + + AxisInformation i=22 - + @@ -36995,19 +39527,21 @@ + XVType i=22 - + + ProgramDiagnosticDataType i=22 - + @@ -37021,10 +39555,11 @@ + ProgramDiagnostic2DataType i=22 - + @@ -37040,21 +39575,23 @@ + Annotation i=22 - + + ExceptionDeviationFormat i=7614 i=29 - + @@ -37063,6 +39600,7 @@ + EnumStrings i=68 i=78 @@ -37099,6 +39637,7 @@ + Default Binary i=14533 i=14873 @@ -37106,6 +39645,7 @@ + Default Binary i=16313 i=17538 @@ -37113,6 +39653,7 @@ + Default Binary i=17548 i=17550 @@ -37120,6 +39661,7 @@ + Default Binary i=15528 i=15734 @@ -37127,6 +39669,7 @@ + Default Binary i=15634 i=15738 @@ -37134,6 +39677,7 @@ + Default Binary i=12554 i=12681 @@ -37141,6 +39685,7 @@ + Default Binary i=15534 i=15741 @@ -37148,6 +39693,7 @@ + Default Binary i=14525 i=14855 @@ -37155,6 +39701,7 @@ + Default Binary i=15487 i=15599 @@ -37162,6 +39709,7 @@ + Default Binary i=15488 i=15602 @@ -37169,6 +39717,7 @@ + Default Binary i=15005 i=15501 @@ -37176,6 +39725,7 @@ + Default Binary i=15006 i=15521 @@ -37183,6 +39733,7 @@ + Default Binary i=14523 i=14849 @@ -37190,6 +39741,7 @@ + Default Binary i=14524 i=14852 @@ -37197,6 +39749,7 @@ + Default Binary i=14593 i=14876 @@ -37204,6 +39757,7 @@ + Default Binary i=15578 i=15766 @@ -37211,6 +39765,7 @@ + Default Binary i=15580 i=15769 @@ -37218,6 +39773,7 @@ + Default Binary i=14273 i=14324 @@ -37225,6 +39781,7 @@ + Default Binary i=15581 i=15772 @@ -37232,6 +39789,7 @@ + Default Binary i=15582 i=15775 @@ -37239,6 +39797,7 @@ + Default Binary i=15597 i=15778 @@ -37246,6 +39805,7 @@ + Default Binary i=15598 i=15781 @@ -37253,6 +39813,7 @@ + Default Binary i=15605 i=15784 @@ -37260,6 +39821,7 @@ + Default Binary i=15609 i=15787 @@ -37267,6 +39829,7 @@ + Default Binary i=15480 i=21156 @@ -37274,6 +39837,7 @@ + Default Binary i=15611 i=15793 @@ -37281,6 +39845,7 @@ + Default Binary i=15616 i=15854 @@ -37288,6 +39853,7 @@ + Default Binary i=15617 i=15857 @@ -37295,6 +39861,7 @@ + Default Binary i=15618 i=15860 @@ -37302,6 +39869,7 @@ + Default Binary i=15502 i=21159 @@ -37309,6 +39877,7 @@ + Default Binary i=15510 i=21162 @@ -37316,6 +39885,7 @@ + Default Binary i=15520 i=21165 @@ -37323,6 +39893,7 @@ + Default Binary i=15621 i=15866 @@ -37330,6 +39901,7 @@ + Default Binary i=15622 i=15869 @@ -37337,6 +39909,7 @@ + Default Binary i=15623 i=15872 @@ -37344,6 +39917,7 @@ + Default Binary i=15628 i=15877 @@ -37351,6 +39925,7 @@ + Default Binary i=15629 i=15880 @@ -37358,6 +39933,7 @@ + Default Binary i=15630 i=15883 @@ -37365,6 +39941,7 @@ + Default Binary i=15631 i=15886 @@ -37372,6 +39949,7 @@ + Default Binary i=14744 i=21002 @@ -37379,6 +39957,7 @@ + Default Binary i=15635 i=15889 @@ -37386,6 +39965,7 @@ + Default Binary i=15530 i=21168 @@ -37393,6 +39973,7 @@ + Default Binary i=15645 i=15895 @@ -37400,6 +39981,7 @@ + Default Binary i=15652 i=15898 @@ -37407,6 +39989,7 @@ + Default Binary i=15653 i=15919 @@ -37414,6 +39997,7 @@ + Default Binary i=15657 i=15922 @@ -37421,6 +40005,7 @@ + Default Binary i=15664 i=15925 @@ -37428,6 +40013,7 @@ + Default Binary i=15665 i=15931 @@ -37435,6 +40021,7 @@ + Default Binary i=17467 i=17469 @@ -37442,6 +40029,7 @@ + Default Binary i=15532 i=21171 @@ -37449,6 +40037,7 @@ + Default Binary i=15007 i=15524 @@ -37456,6 +40045,7 @@ + Default Binary i=15667 i=15940 @@ -37463,6 +40053,7 @@ + Default Binary i=15669 i=15943 @@ -37470,6 +40061,7 @@ + Default Binary i=15670 i=15946 @@ -37477,6 +40069,7 @@ + Default Binary i=96 i=16131 @@ -37484,6 +40077,7 @@ + Default Binary i=97 i=18178 @@ -37491,6 +40085,7 @@ + Default Binary i=101 i=18181 @@ -37498,6 +40093,7 @@ + Default Binary i=99 i=18184 @@ -37505,6 +40101,7 @@ + Default Binary i=100 i=18187 @@ -37512,6 +40109,7 @@ + Default Binary i=296 i=7650 @@ -37519,6 +40117,7 @@ + Default Binary i=7594 i=7656 @@ -37526,6 +40125,7 @@ + Default Binary i=102 i=14870 @@ -37533,6 +40133,7 @@ + Default Binary i=12755 i=12767 @@ -37540,6 +40141,7 @@ + Default Binary i=12756 i=12770 @@ -37547,6 +40149,7 @@ + Default Binary i=8912 i=8914 @@ -37554,6 +40157,7 @@ + Default Binary i=308 i=7665 @@ -37561,6 +40165,7 @@ + Default Binary i=12189 i=12213 @@ -37568,6 +40173,7 @@ + Default Binary i=304 i=7662 @@ -37575,6 +40181,7 @@ + Default Binary i=312 i=7668 @@ -37582,6 +40189,7 @@ + Default Binary i=432 i=7782 @@ -37589,6 +40197,7 @@ + Default Binary i=12890 i=12902 @@ -37596,6 +40205,7 @@ + Default Binary i=12891 i=12905 @@ -37603,6 +40213,7 @@ + Default Binary i=344 i=7698 @@ -37610,6 +40221,7 @@ + Default Binary i=316 i=7671 @@ -37617,6 +40229,7 @@ + Default Binary i=319 i=7674 @@ -37624,6 +40237,7 @@ + Default Binary i=322 i=7677 @@ -37631,6 +40245,7 @@ + Default Binary i=325 i=7680 @@ -37638,6 +40253,7 @@ + Default Binary i=938 i=7683 @@ -37645,6 +40261,7 @@ + Default Binary i=376 i=7728 @@ -37652,6 +40269,7 @@ + Default Binary i=379 i=7731 @@ -37659,6 +40277,7 @@ + Default Binary i=382 i=7734 @@ -37666,6 +40285,7 @@ + Default Binary i=385 i=7737 @@ -37673,6 +40293,7 @@ + Default Binary i=537 i=12718 @@ -37680,6 +40301,7 @@ + Default Binary i=540 i=12721 @@ -37687,6 +40309,7 @@ + Default Binary i=331 i=7686 @@ -37694,6 +40317,7 @@ + Default Binary i=583 i=7929 @@ -37701,6 +40325,7 @@ + Default Binary i=586 i=7932 @@ -37708,6 +40333,7 @@ + Default Binary i=589 i=7935 @@ -37715,6 +40341,7 @@ + Default Binary i=592 i=7938 @@ -37722,6 +40349,7 @@ + Default Binary i=595 i=7941 @@ -37729,6 +40357,7 @@ + Default Binary i=598 i=7944 @@ -37736,6 +40365,7 @@ + Default Binary i=601 i=7947 @@ -37743,6 +40373,7 @@ + Default Binary i=659 i=8004 @@ -37750,6 +40381,7 @@ + Default Binary i=719 i=8067 @@ -37757,6 +40389,7 @@ + Default Binary i=725 i=8073 @@ -37764,6 +40397,7 @@ + Default Binary i=948 i=8076 @@ -37771,6 +40405,7 @@ + Default Binary i=920 i=8172 @@ -37778,6 +40413,7 @@ + Default Binary i=338 i=7692 @@ -37785,6 +40421,7 @@ + Default Binary i=853 i=8208 @@ -37792,6 +40429,7 @@ + Default Binary i=11943 i=11959 @@ -37799,6 +40437,7 @@ + Default Binary i=11944 i=11962 @@ -37806,6 +40445,7 @@ + Default Binary i=856 i=8211 @@ -37813,6 +40453,7 @@ + Default Binary i=859 i=8214 @@ -37820,6 +40461,7 @@ + Default Binary i=862 i=8217 @@ -37827,6 +40469,7 @@ + Default Binary i=865 i=8220 @@ -37834,6 +40477,7 @@ + Default Binary i=868 i=8223 @@ -37841,6 +40485,7 @@ + Default Binary i=871 i=8226 @@ -37848,6 +40493,7 @@ + Default Binary i=299 i=7659 @@ -37855,6 +40501,7 @@ + Default Binary i=874 i=8229 @@ -37862,6 +40509,7 @@ + Default Binary i=877 i=8232 @@ -37869,6 +40517,7 @@ + Default Binary i=897 i=8235 @@ -37876,6 +40525,7 @@ + Default Binary i=884 i=8238 @@ -37883,6 +40533,7 @@ + Default Binary i=887 i=8241 @@ -37890,6 +40541,7 @@ + Default Binary i=12171 i=12183 @@ -37897,6 +40549,7 @@ + Default Binary i=12172 i=12186 @@ -37904,6 +40557,7 @@ + Default Binary i=12079 i=12091 @@ -37911,6 +40565,7 @@ + Default Binary i=12080 i=12094 @@ -37918,6 +40573,7 @@ + Default Binary i=894 i=8247 @@ -37925,6 +40581,7 @@ + Default Binary i=15396 i=15398 @@ -37932,6 +40589,7 @@ + Default Binary i=891 i=8244 @@ -37939,6 +40597,7 @@ + Opc.Ua i=7619 i=15037 @@ -38152,8 +40811,8 @@ aWFnbm9zdGljIGluZm9ybWF0aW9uIGFzc29jaWF0ZWQgd2l0aCBhIHN0YXR1cyBjb2RlLjwvb3Bj OkRvY3VtZW50YXRpb24+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJTeW1ib2xpY0lkU3BlY2lmaWVk IiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZpZWxkIE5hbWU9Ik5hbWVzcGFjZVVS SVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJM -b2NhbGVTcGVjaWZpZWQiIFR5cGVOYW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFt -ZT0iTG9jYWxpemVkVGV4dFNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w +b2NhbGl6ZWRUZXh0U3BlY2lmaWVkIiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZp +ZWxkIE5hbWU9IkxvY2FsZVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w YzpGaWVsZCBOYW1lPSJBZGRpdGlvbmFsSW5mb1NwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQi IC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJJbm5lclN0YXR1c0NvZGVTcGVjaWZpZWQiIFR5cGVO YW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFtZT0iSW5uZXJEaWFnbm9zdGljSW5m @@ -41134,6 +43793,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + NamespaceUri i=68 i=7617 @@ -41143,6 +43803,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Deprecated i=68 i=7617 @@ -41152,6 +43813,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + KeyValuePair i=69 i=7617 @@ -41161,6 +43823,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AdditionalParametersType i=69 i=7617 @@ -41170,6 +43833,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EphemeralKeyType i=69 i=7617 @@ -41179,6 +43843,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EndpointType i=69 i=7617 @@ -41188,6 +43853,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + IdentityMappingRuleType i=69 i=7617 @@ -41197,6 +43863,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + TrustListDataType i=69 i=7617 @@ -41206,6 +43873,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataTypeSchemaHeader i=69 i=7617 @@ -41215,6 +43883,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataTypeDescription i=69 i=7617 @@ -41224,6 +43893,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + StructureDescription i=69 i=7617 @@ -41233,6 +43903,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EnumDescription i=69 i=7617 @@ -41242,6 +43913,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SimpleTypeDescription i=69 i=7617 @@ -41251,6 +43923,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UABinaryFileDataType i=69 i=7617 @@ -41260,6 +43933,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetMetaDataType i=69 i=7617 @@ -41269,6 +43943,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + FieldMetaData i=69 i=7617 @@ -41278,6 +43953,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ConfigurationVersionDataType i=69 i=7617 @@ -41287,6 +43963,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PublishedDataSetDataType i=69 i=7617 @@ -41296,6 +43973,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PublishedDataSetSourceDataType i=69 i=7617 @@ -41305,6 +43983,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PublishedVariableDataType i=69 i=7617 @@ -41314,6 +43993,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PublishedDataItemsDataType i=69 i=7617 @@ -41323,6 +44003,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PublishedEventsDataType i=69 i=7617 @@ -41332,6 +44013,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetWriterDataType i=69 i=7617 @@ -41341,6 +44023,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetWriterTransportDataType i=69 i=7617 @@ -41350,6 +44033,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetWriterMessageDataType i=69 i=7617 @@ -41359,6 +44043,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PubSubGroupDataType i=69 i=7617 @@ -41368,6 +44053,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + WriterGroupDataType i=69 i=7617 @@ -41377,6 +44063,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + WriterGroupTransportDataType i=69 i=7617 @@ -41386,6 +44073,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + WriterGroupMessageDataType i=69 i=7617 @@ -41395,6 +44083,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PubSubConnectionDataType i=69 i=7617 @@ -41404,6 +44093,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ConnectionTransportDataType i=69 i=7617 @@ -41413,6 +44103,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + NetworkAddressDataType i=69 i=7617 @@ -41422,6 +44113,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + NetworkAddressUrlDataType i=69 i=7617 @@ -41431,6 +44123,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ReaderGroupDataType i=69 i=7617 @@ -41440,6 +44133,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ReaderGroupTransportDataType i=69 i=7617 @@ -41449,6 +44143,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ReaderGroupMessageDataType i=69 i=7617 @@ -41458,6 +44153,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetReaderDataType i=69 i=7617 @@ -41467,6 +44163,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetReaderTransportDataType i=69 i=7617 @@ -41476,6 +44173,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataSetReaderMessageDataType i=69 i=7617 @@ -41485,6 +44183,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SubscribedDataSetDataType i=69 i=7617 @@ -41494,6 +44193,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + TargetVariablesDataType i=69 i=7617 @@ -41503,6 +44203,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + FieldTargetDataType i=69 i=7617 @@ -41512,6 +44213,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SubscribedDataSetMirrorDataType i=69 i=7617 @@ -41521,6 +44223,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + PubSubConfigurationDataType i=69 i=7617 @@ -41530,6 +44233,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UadpWriterGroupMessageDataType i=69 i=7617 @@ -41539,6 +44243,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UadpDataSetWriterMessageDataType i=69 i=7617 @@ -41548,6 +44253,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UadpDataSetReaderMessageDataType i=69 i=7617 @@ -41557,6 +44263,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + JsonWriterGroupMessageDataType i=69 i=7617 @@ -41566,6 +44273,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + JsonDataSetWriterMessageDataType i=69 i=7617 @@ -41575,6 +44283,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + JsonDataSetReaderMessageDataType i=69 i=7617 @@ -41584,6 +44293,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DatagramConnectionTransportDataType i=69 i=7617 @@ -41593,6 +44303,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DatagramWriterGroupTransportDataType i=69 i=7617 @@ -41602,6 +44313,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + BrokerConnectionTransportDataType i=69 i=7617 @@ -41611,6 +44323,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + BrokerWriterGroupTransportDataType i=69 i=7617 @@ -41620,6 +44333,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + BrokerDataSetWriterTransportDataType i=69 i=7617 @@ -41629,6 +44343,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + BrokerDataSetReaderTransportDataType i=69 i=7617 @@ -41638,6 +44353,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + RolePermissionType i=69 i=7617 @@ -41647,6 +44363,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DataTypeDefinition i=69 i=7617 @@ -41656,6 +44373,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + StructureField i=69 i=7617 @@ -41665,6 +44383,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + StructureDefinition i=69 i=7617 @@ -41674,6 +44393,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EnumDefinition i=69 i=7617 @@ -41683,6 +44403,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Argument i=69 i=7617 @@ -41692,6 +44413,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EnumValueType i=69 i=7617 @@ -41701,6 +44423,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EnumField i=69 i=7617 @@ -41710,6 +44433,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + OptionSet i=69 i=7617 @@ -41719,6 +44443,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Union i=69 i=7617 @@ -41728,6 +44453,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + TimeZoneDataType i=69 i=7617 @@ -41737,6 +44463,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ApplicationDescription i=69 i=7617 @@ -41746,6 +44473,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ServerOnNetwork i=69 i=7617 @@ -41755,6 +44483,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UserTokenPolicy i=69 i=7617 @@ -41764,6 +44493,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EndpointDescription i=69 i=7617 @@ -41773,6 +44503,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + RegisteredServer i=69 i=7617 @@ -41782,6 +44513,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DiscoveryConfiguration i=69 i=7617 @@ -41791,6 +44523,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + MdnsDiscoveryConfiguration i=69 i=7617 @@ -41800,6 +44533,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SignedSoftwareCertificate i=69 i=7617 @@ -41809,6 +44543,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UserIdentityToken i=69 i=7617 @@ -41818,6 +44553,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AnonymousIdentityToken i=69 i=7617 @@ -41827,6 +44563,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + UserNameIdentityToken i=69 i=7617 @@ -41836,6 +44573,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + X509IdentityToken i=69 i=7617 @@ -41845,6 +44583,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + IssuedIdentityToken i=69 i=7617 @@ -41854,6 +44593,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AddNodesItem i=69 i=7617 @@ -41863,6 +44603,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AddReferencesItem i=69 i=7617 @@ -41872,6 +44613,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DeleteNodesItem i=69 i=7617 @@ -41881,6 +44623,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DeleteReferencesItem i=69 i=7617 @@ -41890,6 +44633,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + RelativePathElement i=69 i=7617 @@ -41899,6 +44643,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + RelativePath i=69 i=7617 @@ -41908,6 +44653,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EndpointConfiguration i=69 i=7617 @@ -41917,6 +44663,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ContentFilterElement i=69 i=7617 @@ -41926,6 +44673,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ContentFilter i=69 i=7617 @@ -41935,6 +44683,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + FilterOperand i=69 i=7617 @@ -41944,6 +44693,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ElementOperand i=69 i=7617 @@ -41953,6 +44703,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + LiteralOperand i=69 i=7617 @@ -41962,6 +44713,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AttributeOperand i=69 i=7617 @@ -41971,6 +44723,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SimpleAttributeOperand i=69 i=7617 @@ -41980,6 +44733,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + HistoryEvent i=69 i=7617 @@ -41989,6 +44743,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + MonitoringFilter i=69 i=7617 @@ -41998,6 +44753,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EventFilter i=69 i=7617 @@ -42007,6 +44763,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AggregateConfiguration i=69 i=7617 @@ -42016,6 +44773,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + HistoryEventFieldList i=69 i=7617 @@ -42025,6 +44783,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + BuildInfo i=69 i=7617 @@ -42034,6 +44793,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + RedundantServerDataType i=69 i=7617 @@ -42043,6 +44803,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EndpointUrlListDataType i=69 i=7617 @@ -42052,6 +44813,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + NetworkGroupDataType i=69 i=7617 @@ -42061,6 +44823,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SamplingIntervalDiagnosticsDataType i=69 i=7617 @@ -42070,6 +44833,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ServerDiagnosticsSummaryDataType i=69 i=7617 @@ -42079,6 +44843,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ServerStatusDataType i=69 i=7617 @@ -42088,6 +44853,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SessionDiagnosticsDataType i=69 i=7617 @@ -42097,6 +44863,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SessionSecurityDiagnosticsDataType i=69 i=7617 @@ -42106,6 +44873,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ServiceCounterDataType i=69 i=7617 @@ -42115,6 +44883,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + StatusResult i=69 i=7617 @@ -42124,6 +44893,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SubscriptionDiagnosticsDataType i=69 i=7617 @@ -42133,6 +44903,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ModelChangeStructureDataType i=69 i=7617 @@ -42142,6 +44913,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + SemanticChangeStructureDataType i=69 i=7617 @@ -42151,6 +44923,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Range i=69 i=7617 @@ -42160,6 +44933,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + EUInformation i=69 i=7617 @@ -42169,6 +44943,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ComplexNumberType i=69 i=7617 @@ -42178,6 +44953,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + DoubleComplexNumberType i=69 i=7617 @@ -42187,6 +44963,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + AxisInformation i=69 i=7617 @@ -42196,6 +44973,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + XVType i=69 i=7617 @@ -42205,6 +44983,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ProgramDiagnosticDataType i=69 i=7617 @@ -42214,6 +44993,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + ProgramDiagnostic2DataType i=69 i=7617 @@ -42223,6 +45003,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Annotation i=69 i=7617 @@ -42232,6 +45013,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14533 i=14829 @@ -42239,6 +45021,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=16313 i=17542 @@ -42246,6 +45029,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=17548 i=17554 @@ -42253,6 +45037,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15528 i=16024 @@ -42260,6 +45045,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15634 i=15730 @@ -42267,6 +45053,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12554 i=12677 @@ -42274,6 +45061,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15534 i=16027 @@ -42281,6 +45069,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14525 i=14811 @@ -42288,6 +45077,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15487 i=15591 @@ -42295,6 +45085,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15488 i=15594 @@ -42302,6 +45093,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15005 i=15585 @@ -42309,6 +45101,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15006 i=15588 @@ -42316,6 +45109,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14523 i=14805 @@ -42323,6 +45117,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14524 i=14808 @@ -42330,6 +45125,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14593 i=14832 @@ -42337,6 +45133,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15578 i=16030 @@ -42344,6 +45141,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15580 i=16033 @@ -42351,6 +45149,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14273 i=14320 @@ -42358,6 +45157,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15581 i=16037 @@ -42365,6 +45165,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15582 i=16040 @@ -42372,6 +45173,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15597 i=16047 @@ -42379,6 +45181,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15598 i=16050 @@ -42386,6 +45189,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15605 i=16053 @@ -42393,6 +45197,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15609 i=16056 @@ -42400,6 +45205,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15480 i=21180 @@ -42407,6 +45213,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15611 i=16062 @@ -42414,6 +45221,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15616 i=16065 @@ -42421,6 +45229,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15617 i=16068 @@ -42428,6 +45237,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15618 i=16071 @@ -42435,6 +45245,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15502 i=21183 @@ -42442,6 +45253,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15510 i=21186 @@ -42449,6 +45261,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15520 i=21189 @@ -42456,6 +45269,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15621 i=16077 @@ -42463,6 +45277,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15622 i=16080 @@ -42470,6 +45285,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15623 i=16083 @@ -42477,6 +45293,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15628 i=16086 @@ -42484,6 +45301,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15629 i=16089 @@ -42491,6 +45309,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15630 i=16092 @@ -42498,6 +45317,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15631 i=16095 @@ -42505,6 +45325,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=14744 i=14835 @@ -42512,6 +45333,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15635 i=16098 @@ -42519,6 +45341,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15530 i=21192 @@ -42526,6 +45349,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15645 i=16104 @@ -42533,6 +45357,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15652 i=16107 @@ -42540,6 +45365,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15653 i=16110 @@ -42547,6 +45373,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15657 i=16113 @@ -42554,6 +45381,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15664 i=16116 @@ -42561,6 +45389,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15665 i=16119 @@ -42568,6 +45397,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=17467 i=17473 @@ -42575,6 +45405,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15532 i=21195 @@ -42582,6 +45413,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15007 i=15640 @@ -42589,6 +45421,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15667 i=16125 @@ -42596,6 +45429,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15669 i=16144 @@ -42603,6 +45437,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15670 i=16147 @@ -42610,6 +45445,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=96 i=16127 @@ -42617,6 +45453,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=97 i=18166 @@ -42624,6 +45461,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=101 i=18169 @@ -42631,6 +45469,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=99 i=18172 @@ -42638,6 +45477,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=100 i=18175 @@ -42645,6 +45485,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=296 i=8285 @@ -42652,6 +45493,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=7594 i=8291 @@ -42659,6 +45501,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=102 i=14826 @@ -42666,6 +45509,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12755 i=12759 @@ -42673,6 +45517,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12756 i=12762 @@ -42680,6 +45525,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=8912 i=8918 @@ -42687,6 +45533,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=308 i=8300 @@ -42694,6 +45541,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12189 i=12201 @@ -42701,6 +45549,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=304 i=8297 @@ -42708,6 +45557,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=312 i=8303 @@ -42715,6 +45565,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=432 i=8417 @@ -42722,6 +45573,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12890 i=12894 @@ -42729,6 +45581,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12891 i=12897 @@ -42736,6 +45589,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=344 i=8333 @@ -42743,6 +45597,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=316 i=8306 @@ -42750,6 +45605,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=319 i=8309 @@ -42757,6 +45613,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=322 i=8312 @@ -42764,6 +45621,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=325 i=8315 @@ -42771,6 +45629,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=938 i=8318 @@ -42778,6 +45637,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=376 i=8363 @@ -42785,6 +45645,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=379 i=8366 @@ -42792,6 +45653,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=382 i=8369 @@ -42799,6 +45661,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=385 i=8372 @@ -42806,6 +45669,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=537 i=12712 @@ -42813,6 +45677,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=540 i=12715 @@ -42820,6 +45685,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=331 i=8321 @@ -42827,6 +45693,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=583 i=8564 @@ -42834,6 +45701,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=586 i=8567 @@ -42841,6 +45709,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=589 i=8570 @@ -42848,6 +45717,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=592 i=8573 @@ -42855,6 +45725,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=595 i=8576 @@ -42862,6 +45733,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=598 i=8579 @@ -42869,6 +45741,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=601 i=8582 @@ -42876,6 +45749,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=659 i=8639 @@ -42883,6 +45757,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=719 i=8702 @@ -42890,6 +45765,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=725 i=8708 @@ -42897,6 +45773,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=948 i=8711 @@ -42904,6 +45781,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=920 i=8807 @@ -42911,6 +45789,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=338 i=8327 @@ -42918,6 +45797,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=853 i=8843 @@ -42925,6 +45805,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=11943 i=11951 @@ -42932,6 +45813,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=11944 i=11954 @@ -42939,6 +45821,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=856 i=8846 @@ -42946,6 +45829,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=859 i=8849 @@ -42953,6 +45837,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=862 i=8852 @@ -42960,6 +45845,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=865 i=8855 @@ -42967,6 +45853,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=868 i=8858 @@ -42974,6 +45861,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=871 i=8861 @@ -42981,6 +45869,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=299 i=8294 @@ -42988,6 +45877,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=874 i=8864 @@ -42995,6 +45885,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=877 i=8867 @@ -43002,6 +45893,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=897 i=8870 @@ -43009,6 +45901,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=884 i=8873 @@ -43016,6 +45909,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=887 i=8876 @@ -43023,6 +45917,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12171 i=12175 @@ -43030,6 +45925,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12172 i=12178 @@ -43037,6 +45933,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12079 i=12083 @@ -43044,6 +45941,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=12080 i=12086 @@ -43051,6 +45949,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=894 i=8882 @@ -43058,6 +45957,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=15396 i=15402 @@ -43065,6 +45965,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Default XML i=891 i=8879 @@ -43072,6 +45973,7 @@ CiAgPC9vcGM6RW51bWVyYXRlZFR5cGU+DQoNCjwvb3BjOlR5cGVEaWN0aW9uYXJ5Pg== + Opc.Ua i=8254 i=15039 @@ -47535,6 +50437,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + NamespaceUri i=68 i=8252 @@ -47544,6 +50447,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Deprecated i=68 i=8252 @@ -47553,6 +50457,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + KeyValuePair i=69 i=8252 @@ -47562,6 +50467,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AdditionalParametersType i=69 i=8252 @@ -47571,6 +50477,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EphemeralKeyType i=69 i=8252 @@ -47580,6 +50487,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EndpointType i=69 i=8252 @@ -47589,6 +50497,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + IdentityMappingRuleType i=69 i=8252 @@ -47598,6 +50507,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + TrustListDataType i=69 i=8252 @@ -47607,6 +50517,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataTypeSchemaHeader i=69 i=8252 @@ -47616,6 +50527,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataTypeDescription i=69 i=8252 @@ -47625,6 +50537,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + StructureDescription i=69 i=8252 @@ -47634,6 +50547,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EnumDescription i=69 i=8252 @@ -47643,6 +50557,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SimpleTypeDescription i=69 i=8252 @@ -47652,6 +50567,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UABinaryFileDataType i=69 i=8252 @@ -47661,6 +50577,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetMetaDataType i=69 i=8252 @@ -47670,6 +50587,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + FieldMetaData i=69 i=8252 @@ -47679,6 +50597,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ConfigurationVersionDataType i=69 i=8252 @@ -47688,6 +50607,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PublishedDataSetDataType i=69 i=8252 @@ -47697,6 +50617,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PublishedDataSetSourceDataType i=69 i=8252 @@ -47706,6 +50627,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PublishedVariableDataType i=69 i=8252 @@ -47715,6 +50637,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PublishedDataItemsDataType i=69 i=8252 @@ -47724,6 +50647,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PublishedEventsDataType i=69 i=8252 @@ -47733,6 +50657,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetWriterDataType i=69 i=8252 @@ -47742,6 +50667,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetWriterTransportDataType i=69 i=8252 @@ -47751,6 +50677,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetWriterMessageDataType i=69 i=8252 @@ -47760,6 +50687,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PubSubGroupDataType i=69 i=8252 @@ -47769,6 +50697,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + WriterGroupDataType i=69 i=8252 @@ -47778,6 +50707,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + WriterGroupTransportDataType i=69 i=8252 @@ -47787,6 +50717,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + WriterGroupMessageDataType i=69 i=8252 @@ -47796,6 +50727,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PubSubConnectionDataType i=69 i=8252 @@ -47805,6 +50737,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ConnectionTransportDataType i=69 i=8252 @@ -47814,6 +50747,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + NetworkAddressDataType i=69 i=8252 @@ -47823,6 +50757,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + NetworkAddressUrlDataType i=69 i=8252 @@ -47832,6 +50767,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ReaderGroupDataType i=69 i=8252 @@ -47841,6 +50777,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ReaderGroupTransportDataType i=69 i=8252 @@ -47850,6 +50787,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ReaderGroupMessageDataType i=69 i=8252 @@ -47859,6 +50797,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetReaderDataType i=69 i=8252 @@ -47868,6 +50807,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetReaderTransportDataType i=69 i=8252 @@ -47877,6 +50817,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataSetReaderMessageDataType i=69 i=8252 @@ -47886,6 +50827,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SubscribedDataSetDataType i=69 i=8252 @@ -47895,6 +50837,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + TargetVariablesDataType i=69 i=8252 @@ -47904,6 +50847,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + FieldTargetDataType i=69 i=8252 @@ -47913,6 +50857,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SubscribedDataSetMirrorDataType i=69 i=8252 @@ -47922,6 +50867,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + PubSubConfigurationDataType i=69 i=8252 @@ -47931,6 +50877,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UadpWriterGroupMessageDataType i=69 i=8252 @@ -47940,6 +50887,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UadpDataSetWriterMessageDataType i=69 i=8252 @@ -47949,6 +50897,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UadpDataSetReaderMessageDataType i=69 i=8252 @@ -47958,6 +50907,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + JsonWriterGroupMessageDataType i=69 i=8252 @@ -47967,6 +50917,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + JsonDataSetWriterMessageDataType i=69 i=8252 @@ -47976,6 +50927,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + JsonDataSetReaderMessageDataType i=69 i=8252 @@ -47985,6 +50937,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DatagramConnectionTransportDataType i=69 i=8252 @@ -47994,6 +50947,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DatagramWriterGroupTransportDataType i=69 i=8252 @@ -48003,6 +50957,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + BrokerConnectionTransportDataType i=69 i=8252 @@ -48012,6 +50967,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + BrokerWriterGroupTransportDataType i=69 i=8252 @@ -48021,6 +50977,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + BrokerDataSetWriterTransportDataType i=69 i=8252 @@ -48030,6 +50987,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + BrokerDataSetReaderTransportDataType i=69 i=8252 @@ -48039,6 +50997,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + RolePermissionType i=69 i=8252 @@ -48048,6 +51007,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DataTypeDefinition i=69 i=8252 @@ -48057,6 +51017,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + StructureField i=69 i=8252 @@ -48066,6 +51027,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + StructureDefinition i=69 i=8252 @@ -48075,6 +51037,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EnumDefinition i=69 i=8252 @@ -48084,6 +51047,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Argument i=69 i=8252 @@ -48093,6 +51057,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EnumValueType i=69 i=8252 @@ -48102,6 +51067,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EnumField i=69 i=8252 @@ -48111,6 +51077,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + OptionSet i=69 i=8252 @@ -48120,6 +51087,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Union i=69 i=8252 @@ -48129,6 +51097,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + TimeZoneDataType i=69 i=8252 @@ -48138,6 +51107,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ApplicationDescription i=69 i=8252 @@ -48147,6 +51117,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ServerOnNetwork i=69 i=8252 @@ -48156,6 +51127,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UserTokenPolicy i=69 i=8252 @@ -48165,6 +51137,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EndpointDescription i=69 i=8252 @@ -48174,6 +51147,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + RegisteredServer i=69 i=8252 @@ -48183,6 +51157,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DiscoveryConfiguration i=69 i=8252 @@ -48192,6 +51167,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + MdnsDiscoveryConfiguration i=69 i=8252 @@ -48201,6 +51177,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SignedSoftwareCertificate i=69 i=8252 @@ -48210,6 +51187,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UserIdentityToken i=69 i=8252 @@ -48219,6 +51197,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AnonymousIdentityToken i=69 i=8252 @@ -48228,6 +51207,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + UserNameIdentityToken i=69 i=8252 @@ -48237,6 +51217,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + X509IdentityToken i=69 i=8252 @@ -48246,6 +51227,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + IssuedIdentityToken i=69 i=8252 @@ -48255,6 +51237,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AddNodesItem i=69 i=8252 @@ -48264,6 +51247,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AddReferencesItem i=69 i=8252 @@ -48273,6 +51257,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DeleteNodesItem i=69 i=8252 @@ -48282,6 +51267,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DeleteReferencesItem i=69 i=8252 @@ -48291,6 +51277,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + RelativePathElement i=69 i=8252 @@ -48300,6 +51287,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + RelativePath i=69 i=8252 @@ -48309,6 +51297,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EndpointConfiguration i=69 i=8252 @@ -48318,6 +51307,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ContentFilterElement i=69 i=8252 @@ -48327,6 +51317,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ContentFilter i=69 i=8252 @@ -48336,6 +51327,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + FilterOperand i=69 i=8252 @@ -48345,6 +51337,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ElementOperand i=69 i=8252 @@ -48354,6 +51347,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + LiteralOperand i=69 i=8252 @@ -48363,6 +51357,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AttributeOperand i=69 i=8252 @@ -48372,6 +51367,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SimpleAttributeOperand i=69 i=8252 @@ -48381,6 +51377,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + HistoryEvent i=69 i=8252 @@ -48390,6 +51387,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + MonitoringFilter i=69 i=8252 @@ -48399,6 +51397,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EventFilter i=69 i=8252 @@ -48408,6 +51407,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AggregateConfiguration i=69 i=8252 @@ -48417,6 +51417,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + HistoryEventFieldList i=69 i=8252 @@ -48426,6 +51427,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + BuildInfo i=69 i=8252 @@ -48435,6 +51437,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + RedundantServerDataType i=69 i=8252 @@ -48444,6 +51447,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EndpointUrlListDataType i=69 i=8252 @@ -48453,6 +51457,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + NetworkGroupDataType i=69 i=8252 @@ -48462,6 +51467,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SamplingIntervalDiagnosticsDataType i=69 i=8252 @@ -48471,6 +51477,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ServerDiagnosticsSummaryDataType i=69 i=8252 @@ -48480,6 +51487,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ServerStatusDataType i=69 i=8252 @@ -48489,6 +51497,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SessionDiagnosticsDataType i=69 i=8252 @@ -48498,6 +51507,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SessionSecurityDiagnosticsDataType i=69 i=8252 @@ -48507,6 +51517,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ServiceCounterDataType i=69 i=8252 @@ -48516,6 +51527,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + StatusResult i=69 i=8252 @@ -48525,6 +51537,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SubscriptionDiagnosticsDataType i=69 i=8252 @@ -48534,6 +51547,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ModelChangeStructureDataType i=69 i=8252 @@ -48543,6 +51557,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + SemanticChangeStructureDataType i=69 i=8252 @@ -48552,6 +51567,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Range i=69 i=8252 @@ -48561,6 +51577,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + EUInformation i=69 i=8252 @@ -48570,6 +51587,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ComplexNumberType i=69 i=8252 @@ -48579,6 +51597,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + DoubleComplexNumberType i=69 i=8252 @@ -48588,6 +51607,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + AxisInformation i=69 i=8252 @@ -48597,6 +51617,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + XVType i=69 i=8252 @@ -48606,6 +51627,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ProgramDiagnosticDataType i=69 i=8252 @@ -48615,6 +51637,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + ProgramDiagnostic2DataType i=69 i=8252 @@ -48624,6 +51647,7 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Annotation i=69 i=8252 @@ -48633,720 +51657,840 @@ IiAvPg0KDQo8L3hzOnNjaGVtYT4= + Default JSON i=14533 i=76 + Default JSON i=16313 i=76 + Default JSON i=17548 i=76 + Default JSON i=15528 i=76 + Default JSON i=15634 i=76 + Default JSON i=12554 i=76 + Default JSON i=15534 i=76 + Default JSON i=14525 i=76 + Default JSON i=15487 i=76 + Default JSON i=15488 i=76 + Default JSON i=15005 i=76 + Default JSON i=15006 i=76 + Default JSON i=14523 i=76 + Default JSON i=14524 i=76 + Default JSON i=14593 i=76 + Default JSON i=15578 i=76 + Default JSON i=15580 i=76 + Default JSON i=14273 i=76 + Default JSON i=15581 i=76 + Default JSON i=15582 i=76 + Default JSON i=15597 i=76 + Default JSON i=15598 i=76 + Default JSON i=15605 i=76 + Default JSON i=15609 i=76 + Default JSON i=15480 i=76 + Default JSON i=15611 i=76 + Default JSON i=15616 i=76 + Default JSON i=15617 i=76 + Default JSON i=15618 i=76 + Default JSON i=15502 i=76 + Default JSON i=15510 i=76 + Default JSON i=15520 i=76 + Default JSON i=15621 i=76 + Default JSON i=15622 i=76 + Default JSON i=15623 i=76 + Default JSON i=15628 i=76 + Default JSON i=15629 i=76 + Default JSON i=15630 i=76 + Default JSON i=15631 i=76 + Default JSON i=14744 i=76 + Default JSON i=15635 i=76 + Default JSON i=15530 i=76 + Default JSON i=15645 i=76 + Default JSON i=15652 i=76 + Default JSON i=15653 i=76 + Default JSON i=15657 i=76 + Default JSON i=15664 i=76 + Default JSON i=15665 i=76 + Default JSON i=17467 i=76 + Default JSON i=15532 i=76 + Default JSON i=15007 i=76 + Default JSON i=15667 i=76 + Default JSON i=15669 i=76 + Default JSON i=15670 i=76 + Default JSON i=96 i=76 + Default JSON i=97 i=76 + Default JSON i=101 i=76 + Default JSON i=99 i=76 + Default JSON i=100 i=76 + Default JSON i=296 i=76 + Default JSON i=7594 i=76 + Default JSON i=102 i=76 + Default JSON i=12755 i=76 + Default JSON i=12756 i=76 + Default JSON i=8912 i=76 + Default JSON i=308 i=76 + Default JSON i=12189 i=76 + Default JSON i=304 i=76 + Default JSON i=312 i=76 + Default JSON i=432 i=76 + Default JSON i=12890 i=76 + Default JSON i=12891 i=76 + Default JSON i=344 i=76 + Default JSON i=316 i=76 + Default JSON i=319 i=76 + Default JSON i=322 i=76 + Default JSON i=325 i=76 + Default JSON i=938 i=76 + Default JSON i=376 i=76 + Default JSON i=379 i=76 + Default JSON i=382 i=76 + Default JSON i=385 i=76 + Default JSON i=537 i=76 + Default JSON i=540 i=76 + Default JSON i=331 i=76 + Default JSON i=583 i=76 + Default JSON i=586 i=76 + Default JSON i=589 i=76 + Default JSON i=592 i=76 + Default JSON i=595 i=76 + Default JSON i=598 i=76 + Default JSON i=601 i=76 + Default JSON i=659 i=76 + Default JSON i=719 i=76 + Default JSON i=725 i=76 + Default JSON i=948 i=76 + Default JSON i=920 i=76 + Default JSON i=338 i=76 + Default JSON i=853 i=76 + Default JSON i=11943 i=76 + Default JSON i=11944 i=76 + Default JSON i=856 i=76 + Default JSON i=859 i=76 + Default JSON i=862 i=76 + Default JSON i=865 i=76 + Default JSON i=868 i=76 + Default JSON i=871 i=76 + Default JSON i=299 i=76 + Default JSON i=874 i=76 + Default JSON i=877 i=76 + Default JSON i=897 i=76 + Default JSON i=884 i=76 + Default JSON i=887 i=76 + Default JSON i=12171 i=76 + Default JSON i=12172 i=76 + Default JSON i=12079 i=76 + Default JSON i=12080 i=76 + Default JSON i=894 i=76 + Default JSON i=15396 i=76 + Default JSON i=891 i=76 diff --git a/Core/Schema/Opc.Ua.Types.bsd b/Core/Schema/Opc.Ua.Types.bsd index 60a2ce17..f02610b0 100644 --- a/Core/Schema/Opc.Ua.Types.bsd +++ b/Core/Schema/Opc.Ua.Types.bsd @@ -89,8 +89,8 @@ A recursive structure containing diagnostic information associated with a status code. - + diff --git a/Core/Schema/UANodeSet.cs b/Core/Schema/UANodeSet.cs index 7e98acfe..2b4e9a82 100644 --- a/Core/Schema/UANodeSet.cs +++ b/Core/Schema/UANodeSet.cs @@ -440,8 +440,6 @@ public partial class DataTypeField { private LocalizedText[] descriptionField; - private string documentationField; - private string nameField; private string symbolicNameField; @@ -489,16 +487,6 @@ public partial class DataTypeField { } } - /// - public string Documentation { - get { - return this.documentationField; - } - set { - this.documentationField = value; - } - } - /// [System.Xml.Serialization.XmlAttributeAttribute()] public string Name { diff --git a/Core/Schema/UANodeSet.xsd b/Core/Schema/UANodeSet.xsd index 5719bbe5..f00cb550 100644 --- a/Core/Schema/UANodeSet.xsd +++ b/Core/Schema/UANodeSet.xsd @@ -463,7 +463,7 @@ - + @@ -476,7 +476,6 @@ - diff --git a/Core/Schema/UANodeSetHelpers.cs b/Core/Schema/UANodeSetHelpers.cs index d2617f21..4fdc03cf 100644 --- a/Core/Schema/UANodeSetHelpers.cs +++ b/Core/Schema/UANodeSetHelpers.cs @@ -296,13 +296,13 @@ public void Export(ISystemContext context, NodeState node, bool outputRedundantN exportedNode.DisplayName = null; } - if (node.Description != null && String.IsNullOrEmpty(node.Description.Text)) + if (node.Description != null && !String.IsNullOrEmpty(node.Description.Text)) { exportedNode.Description = Export(new Opc.Ua.LocalizedText[] { node.Description }); } else { - exportedNode.Description = null; + exportedNode.Description = new LocalizedText[0]; } exportedNode.Category = (node.Categories != null && node.Categories.Count > 0) ? new List(node.Categories).ToArray() : null; diff --git a/Core/Stack/Generated/Opc.Ua.PredefinedNodes.uanodes b/Core/Stack/Generated/Opc.Ua.PredefinedNodes.uanodes index 463745b4100f93aff442c6bfbc9d9e149d8fcc14..3d329a52c4814daf6f995137354ed4eadd30a267 100644 GIT binary patch delta 60 zcmZpDr`h^Wv!R8tg=q_OaP{;F)y($OKeVy1O^~pJ%rQN>n%TVld^Ix=vj8zG5VHX> OI}mehKVQvh_8S0x>Kobs diff --git a/Core/Stack/Generated/Opc.Ua.PredefinedNodes.xml b/Core/Stack/Generated/Opc.Ua.PredefinedNodes.xml index 2a00733c..0523418a 100644 --- a/Core/Stack/Generated/Opc.Ua.PredefinedNodes.xml +++ b/Core/Stack/Generated/Opc.Ua.PredefinedNodes.xml @@ -4028,7 +4028,6 @@ -1 - @@ -4076,7 +4075,6 @@ 1 - @@ -4092,7 +4090,6 @@ 1 - @@ -4162,7 +4159,6 @@ -1 - @@ -4232,7 +4228,6 @@ -1 - @@ -4248,7 +4243,6 @@ -1 - @@ -4296,7 +4290,6 @@ -1 - @@ -4366,7 +4359,6 @@ -1 - @@ -4382,7 +4374,6 @@ -1 - @@ -4398,7 +4389,6 @@ -1 - @@ -4414,7 +4404,6 @@ -1 - @@ -4430,7 +4419,6 @@ -1 - @@ -4878,7 +4866,6 @@ -1 - @@ -4894,7 +4881,6 @@ -1 - @@ -4942,7 +4928,6 @@ -1 - @@ -5012,7 +4997,6 @@ -1 - @@ -9205,7 +9189,6 @@ -1 - @@ -9253,7 +9236,6 @@ -1 - @@ -9323,7 +9305,6 @@ -1 - @@ -9393,7 +9374,6 @@ -1 - @@ -9409,7 +9389,6 @@ -1 - @@ -9457,7 +9436,6 @@ -1 - @@ -9527,7 +9505,6 @@ -1 - @@ -9543,7 +9520,6 @@ -1 - @@ -9613,7 +9589,6 @@ -1 - @@ -9661,7 +9636,6 @@ -1 - @@ -9731,7 +9705,6 @@ -1 - @@ -9747,7 +9720,6 @@ -1 - @@ -10170,7 +10142,6 @@ -1 - @@ -10218,7 +10189,6 @@ -1 - @@ -10288,7 +10258,6 @@ -1 - @@ -10358,7 +10327,6 @@ -1 - @@ -10374,7 +10342,6 @@ -1 - @@ -10422,7 +10389,6 @@ -1 - @@ -10492,7 +10458,6 @@ -1 - @@ -10508,7 +10473,6 @@ -1 - @@ -10578,7 +10542,6 @@ -1 - @@ -10626,7 +10589,6 @@ -1 - @@ -10696,7 +10658,6 @@ -1 - @@ -10712,7 +10673,6 @@ -1 - @@ -19872,7 +19832,6 @@ -1 - @@ -19888,7 +19847,6 @@ -1 - @@ -19933,7 +19891,6 @@ -1 - @@ -19997,7 +19954,6 @@ -1 - @@ -20677,7 +20633,6 @@ -1 - @@ -20722,7 +20677,6 @@ 1 - @@ -20738,7 +20692,6 @@ 1 - @@ -20802,7 +20755,6 @@ -1 - @@ -20866,7 +20818,6 @@ -1 - @@ -20882,7 +20833,6 @@ -1 - @@ -20927,7 +20877,6 @@ -1 - @@ -20991,7 +20940,6 @@ -1 - @@ -21007,7 +20955,6 @@ -1 - @@ -21023,7 +20970,6 @@ -1 - @@ -21039,7 +20985,6 @@ -1 - @@ -21055,7 +21000,6 @@ -1 - @@ -22620,7 +22564,6 @@ Read - @@ -22635,7 +22578,6 @@ Write - @@ -22650,7 +22592,6 @@ EraseExisting - @@ -22665,7 +22606,6 @@ Append - @@ -22766,7 +22706,6 @@ -1 - @@ -22814,7 +22753,6 @@ -1 - @@ -22884,7 +22822,6 @@ -1 - @@ -22900,7 +22837,6 @@ -1 - @@ -22948,7 +22884,6 @@ -1 - @@ -22964,7 +22899,6 @@ -1 - @@ -23034,7 +22968,6 @@ -1 - @@ -23104,7 +23037,6 @@ -1 - @@ -23120,7 +23052,6 @@ -1 - @@ -23136,7 +23067,6 @@ -1 - @@ -23152,7 +23082,6 @@ -1 - @@ -23200,7 +23129,6 @@ -1 - @@ -23394,7 +23322,6 @@ -1 - @@ -23442,7 +23369,6 @@ -1 - @@ -23512,7 +23438,6 @@ -1 - @@ -23582,7 +23507,6 @@ -1 - @@ -23598,7 +23522,6 @@ -1 - @@ -23646,7 +23569,6 @@ -1 - @@ -23716,7 +23638,6 @@ -1 - @@ -23732,7 +23653,6 @@ -1 - @@ -23802,7 +23722,6 @@ -1 - @@ -23850,7 +23769,6 @@ -1 - @@ -23920,7 +23838,6 @@ -1 - @@ -23936,7 +23853,6 @@ -1 - @@ -24007,7 +23923,6 @@ -1 - @@ -24055,7 +23970,6 @@ -1 - @@ -24125,7 +24039,6 @@ -1 - @@ -24141,7 +24054,6 @@ -1 - @@ -24189,7 +24101,6 @@ -1 - @@ -24205,7 +24116,6 @@ -1 - @@ -24275,7 +24185,6 @@ -1 - @@ -24345,7 +24254,6 @@ -1 - @@ -24361,7 +24269,6 @@ -1 - @@ -24377,7 +24284,6 @@ -1 - @@ -24393,7 +24299,6 @@ -1 - @@ -24441,7 +24346,6 @@ -1 - @@ -24522,7 +24426,6 @@ -1 - @@ -24567,7 +24470,6 @@ -1 - @@ -24631,7 +24533,6 @@ -1 - @@ -24647,7 +24548,6 @@ -1 - @@ -24692,7 +24592,6 @@ -1 - @@ -24708,7 +24607,6 @@ -1 - @@ -24772,7 +24670,6 @@ -1 - @@ -24836,7 +24733,6 @@ -1 - @@ -24852,7 +24748,6 @@ -1 - @@ -24868,7 +24763,6 @@ -1 - @@ -24884,7 +24778,6 @@ -1 - @@ -24929,7 +24822,6 @@ -1 - @@ -25038,7 +24930,6 @@ -1 - @@ -25086,7 +24977,6 @@ -1 - @@ -25102,7 +24992,6 @@ -1 - @@ -25118,7 +25007,6 @@ -1 - @@ -25188,7 +25076,6 @@ -1 - @@ -25236,7 +25123,6 @@ -1 - @@ -25252,7 +25138,6 @@ -1 - @@ -25322,7 +25207,6 @@ -1 - @@ -25370,7 +25254,6 @@ -1 - @@ -26636,7 +26519,6 @@ -1 - @@ -26652,7 +26534,6 @@ -1 - @@ -26700,7 +26581,6 @@ -1 - @@ -26770,7 +26650,6 @@ -1 - @@ -26983,7 +26862,6 @@ -1 - @@ -27053,7 +26931,6 @@ -1 - @@ -27123,7 +27000,6 @@ -1 - @@ -27193,7 +27069,6 @@ -1 - @@ -27263,7 +27138,6 @@ -1 - @@ -27333,7 +27207,6 @@ -1 - @@ -27394,7 +27267,6 @@ UserName - @@ -27409,7 +27281,6 @@ Thumbprint - @@ -27424,7 +27295,6 @@ Role - @@ -27439,7 +27309,6 @@ GroupId - @@ -27454,7 +27323,6 @@ Anonymous - @@ -27469,7 +27337,6 @@ AuthenticatedUser - @@ -27702,7 +27569,6 @@ -1 - @@ -27766,7 +27632,6 @@ -1 - @@ -27830,7 +27695,6 @@ -1 - @@ -27894,7 +27758,6 @@ -1 - @@ -27958,7 +27821,6 @@ -1 - @@ -28022,7 +27884,6 @@ -1 - @@ -28229,7 +28090,6 @@ -1 - @@ -28293,7 +28153,6 @@ -1 - @@ -28357,7 +28216,6 @@ -1 - @@ -28421,7 +28279,6 @@ -1 - @@ -28485,7 +28342,6 @@ -1 - @@ -28549,7 +28405,6 @@ -1 - @@ -28756,7 +28611,6 @@ -1 - @@ -28820,7 +28674,6 @@ -1 - @@ -28884,7 +28737,6 @@ -1 - @@ -28948,7 +28800,6 @@ -1 - @@ -29012,7 +28863,6 @@ -1 - @@ -29076,7 +28926,6 @@ -1 - @@ -29283,7 +29132,6 @@ -1 - @@ -29347,7 +29195,6 @@ -1 - @@ -29411,7 +29258,6 @@ -1 - @@ -29475,7 +29321,6 @@ -1 - @@ -29539,7 +29384,6 @@ -1 - @@ -29603,7 +29447,6 @@ -1 - @@ -29810,7 +29653,6 @@ -1 - @@ -29874,7 +29716,6 @@ -1 - @@ -29938,7 +29779,6 @@ -1 - @@ -30002,7 +29842,6 @@ -1 - @@ -30066,7 +29905,6 @@ -1 - @@ -30130,7 +29968,6 @@ -1 - @@ -30337,7 +30174,6 @@ -1 - @@ -30401,7 +30237,6 @@ -1 - @@ -30465,7 +30300,6 @@ -1 - @@ -30529,7 +30363,6 @@ -1 - @@ -30593,7 +30426,6 @@ -1 - @@ -30657,7 +30489,6 @@ -1 - @@ -30864,7 +30695,6 @@ -1 - @@ -30928,7 +30758,6 @@ -1 - @@ -30992,7 +30821,6 @@ -1 - @@ -31056,7 +30884,6 @@ -1 - @@ -31120,7 +30947,6 @@ -1 - @@ -31184,7 +31010,6 @@ -1 - @@ -31391,7 +31216,6 @@ -1 - @@ -31455,7 +31279,6 @@ -1 - @@ -31519,7 +31342,6 @@ -1 - @@ -31583,7 +31405,6 @@ -1 - @@ -31647,7 +31468,6 @@ -1 - @@ -31711,7 +31531,6 @@ -1 - @@ -46389,7 +46208,6 @@ -1 - @@ -46437,7 +46255,6 @@ -1 - @@ -46507,7 +46324,6 @@ -1 - @@ -46555,7 +46371,6 @@ -1 - @@ -46625,7 +46440,6 @@ -1 - @@ -46641,7 +46455,6 @@ -1 - @@ -46711,7 +46524,6 @@ -1 - @@ -46727,7 +46539,6 @@ -1 - @@ -46788,7 +46599,6 @@ None - @@ -46803,7 +46613,6 @@ TrustedCertificates - @@ -46818,7 +46627,6 @@ TrustedCrls - @@ -46833,7 +46641,6 @@ IssuerCertificates - @@ -46848,7 +46655,6 @@ IssuerCrls - @@ -46863,7 +46669,6 @@ All - @@ -47081,7 +46886,6 @@ -1 - @@ -47129,7 +46933,6 @@ -1 - @@ -47199,7 +47002,6 @@ -1 - @@ -47269,7 +47071,6 @@ -1 - @@ -47285,7 +47086,6 @@ -1 - @@ -47333,7 +47133,6 @@ -1 - @@ -47403,7 +47202,6 @@ -1 - @@ -47419,7 +47217,6 @@ -1 - @@ -47489,7 +47286,6 @@ -1 - @@ -47537,7 +47333,6 @@ -1 - @@ -47607,7 +47402,6 @@ -1 - @@ -47623,7 +47417,6 @@ -1 - @@ -47719,7 +47512,6 @@ -1 - @@ -47767,7 +47559,6 @@ -1 - @@ -48019,7 +47810,6 @@ -1 - @@ -48067,7 +47857,6 @@ -1 - @@ -48137,7 +47926,6 @@ -1 - @@ -48207,7 +47995,6 @@ -1 - @@ -48223,7 +48010,6 @@ -1 - @@ -48271,7 +48057,6 @@ -1 - @@ -48341,7 +48126,6 @@ -1 - @@ -48357,7 +48141,6 @@ -1 - @@ -48427,7 +48210,6 @@ -1 - @@ -48475,7 +48257,6 @@ -1 - @@ -48545,7 +48326,6 @@ -1 - @@ -48561,7 +48341,6 @@ -1 - @@ -48657,7 +48436,6 @@ -1 - @@ -48705,7 +48483,6 @@ -1 - @@ -48945,7 +48722,6 @@ -1 - @@ -48993,7 +48769,6 @@ -1 - @@ -49063,7 +48838,6 @@ -1 - @@ -49133,7 +48907,6 @@ -1 - @@ -49149,7 +48922,6 @@ -1 - @@ -49197,7 +48969,6 @@ -1 - @@ -49267,7 +49038,6 @@ -1 - @@ -49283,7 +49053,6 @@ -1 - @@ -49353,7 +49122,6 @@ -1 - @@ -49401,7 +49169,6 @@ -1 - @@ -49471,7 +49238,6 @@ -1 - @@ -49487,7 +49253,6 @@ -1 - @@ -49583,7 +49348,6 @@ -1 - @@ -49631,7 +49395,6 @@ -1 - @@ -49871,7 +49634,6 @@ -1 - @@ -49919,7 +49681,6 @@ -1 - @@ -49989,7 +49750,6 @@ -1 - @@ -50059,7 +49819,6 @@ -1 - @@ -50075,7 +49834,6 @@ -1 - @@ -50123,7 +49881,6 @@ -1 - @@ -50193,7 +49950,6 @@ -1 - @@ -50209,7 +49965,6 @@ -1 - @@ -50279,7 +50034,6 @@ -1 - @@ -50327,7 +50081,6 @@ -1 - @@ -50397,7 +50150,6 @@ -1 - @@ -50413,7 +50165,6 @@ -1 - @@ -50509,7 +50260,6 @@ -1 - @@ -50557,7 +50307,6 @@ -1 - @@ -50797,7 +50546,6 @@ -1 - @@ -50845,7 +50593,6 @@ -1 - @@ -50915,7 +50662,6 @@ -1 - @@ -50985,7 +50731,6 @@ -1 - @@ -51001,7 +50746,6 @@ -1 - @@ -51049,7 +50793,6 @@ -1 - @@ -51119,7 +50862,6 @@ -1 - @@ -51135,7 +50877,6 @@ -1 - @@ -51205,7 +50946,6 @@ -1 - @@ -51253,7 +50993,6 @@ -1 - @@ -51323,7 +51062,6 @@ -1 - @@ -51339,7 +51077,6 @@ -1 - @@ -51435,7 +51172,6 @@ -1 - @@ -51483,7 +51219,6 @@ -1 - @@ -51849,7 +51584,6 @@ -1 - @@ -51897,7 +51631,6 @@ -1 - @@ -51967,7 +51700,6 @@ -1 - @@ -52037,7 +51769,6 @@ -1 - @@ -52053,7 +51784,6 @@ -1 - @@ -52101,7 +51831,6 @@ -1 - @@ -52171,7 +51900,6 @@ -1 - @@ -52187,7 +51915,6 @@ -1 - @@ -52257,7 +51984,6 @@ -1 - @@ -52305,7 +52031,6 @@ -1 - @@ -52375,7 +52100,6 @@ -1 - @@ -52391,7 +52115,6 @@ -1 - @@ -52487,7 +52210,6 @@ -1 - @@ -52535,7 +52257,6 @@ -1 - @@ -52738,7 +52459,6 @@ -1 - @@ -52754,7 +52474,6 @@ -1 - @@ -52770,7 +52489,6 @@ -1 - @@ -52786,7 +52504,6 @@ 1 - @@ -52802,7 +52519,6 @@ -1 - @@ -52818,7 +52534,6 @@ -1 - @@ -52866,7 +52581,6 @@ -1 - @@ -52958,7 +52672,6 @@ -1 - @@ -52974,7 +52687,6 @@ -1 - @@ -52990,7 +52702,6 @@ -1 - @@ -53006,7 +52717,6 @@ -1 - @@ -53022,7 +52732,6 @@ -1 - @@ -53070,7 +52779,6 @@ -1 - @@ -53140,7 +52848,6 @@ 1 - @@ -53438,7 +53145,6 @@ -1 - @@ -53483,7 +53189,6 @@ -1 - @@ -53547,7 +53252,6 @@ -1 - @@ -53611,7 +53315,6 @@ -1 - @@ -53627,7 +53330,6 @@ -1 - @@ -53672,7 +53374,6 @@ -1 - @@ -53736,7 +53437,6 @@ -1 - @@ -53752,7 +53452,6 @@ -1 - @@ -53816,7 +53515,6 @@ -1 - @@ -53861,7 +53559,6 @@ -1 - @@ -53925,7 +53622,6 @@ -1 - @@ -53941,7 +53637,6 @@ -1 - @@ -54028,7 +53723,6 @@ -1 - @@ -54073,7 +53767,6 @@ -1 - @@ -54137,7 +53830,6 @@ -1 - @@ -54182,7 +53874,6 @@ -1 - @@ -54246,7 +53937,6 @@ -1 - @@ -54262,7 +53952,6 @@ -1 - @@ -54326,7 +54015,6 @@ -1 - @@ -54342,7 +54030,6 @@ -1 - @@ -54555,7 +54242,6 @@ -1 - @@ -54600,7 +54286,6 @@ -1 - @@ -54664,7 +54349,6 @@ -1 - @@ -54728,7 +54412,6 @@ -1 - @@ -54744,7 +54427,6 @@ -1 - @@ -54789,7 +54471,6 @@ -1 - @@ -54853,7 +54534,6 @@ -1 - @@ -54869,7 +54549,6 @@ -1 - @@ -54933,7 +54612,6 @@ -1 - @@ -54978,7 +54656,6 @@ -1 - @@ -55042,7 +54719,6 @@ -1 - @@ -55058,7 +54734,6 @@ -1 - @@ -55145,7 +54820,6 @@ -1 - @@ -55190,7 +54864,6 @@ -1 - @@ -55254,7 +54927,6 @@ -1 - @@ -55299,7 +54971,6 @@ -1 - @@ -55363,7 +55034,6 @@ -1 - @@ -55379,7 +55049,6 @@ -1 - @@ -55443,7 +55112,6 @@ -1 - @@ -55459,7 +55127,6 @@ -1 - @@ -55672,7 +55339,6 @@ -1 - @@ -55717,7 +55383,6 @@ -1 - @@ -55781,7 +55446,6 @@ -1 - @@ -55845,7 +55509,6 @@ -1 - @@ -55861,7 +55524,6 @@ -1 - @@ -55906,7 +55568,6 @@ -1 - @@ -55970,7 +55631,6 @@ -1 - @@ -55986,7 +55646,6 @@ -1 - @@ -56050,7 +55709,6 @@ -1 - @@ -56095,7 +55753,6 @@ -1 - @@ -56159,7 +55816,6 @@ -1 - @@ -56175,7 +55831,6 @@ -1 - @@ -56262,7 +55917,6 @@ -1 - @@ -56307,7 +55961,6 @@ -1 - @@ -56371,7 +56024,6 @@ -1 - @@ -56416,7 +56068,6 @@ -1 - @@ -56480,7 +56131,6 @@ -1 - @@ -56496,7 +56146,6 @@ -1 - @@ -56560,7 +56209,6 @@ -1 - @@ -56576,7 +56224,6 @@ -1 - @@ -56758,7 +56405,6 @@ -1 - @@ -56774,7 +56420,6 @@ -1 - @@ -56790,7 +56435,6 @@ -1 - @@ -56806,7 +56450,6 @@ 1 - @@ -56822,7 +56465,6 @@ -1 - @@ -56838,7 +56480,6 @@ -1 - @@ -56883,7 +56524,6 @@ -1 - @@ -56966,7 +56606,6 @@ -1 - @@ -56982,7 +56621,6 @@ -1 - @@ -56998,7 +56636,6 @@ -1 - @@ -57014,7 +56651,6 @@ -1 - @@ -57030,7 +56666,6 @@ -1 - @@ -57075,7 +56710,6 @@ -1 - @@ -57139,7 +56773,6 @@ 1 - @@ -57294,7 +56927,6 @@ -1 - @@ -57310,7 +56942,6 @@ -1 - @@ -57326,7 +56957,6 @@ 1 - @@ -57374,7 +57004,6 @@ -1 - @@ -57589,7 +57218,6 @@ -1 - @@ -57605,7 +57233,6 @@ -1 - @@ -57653,7 +57280,6 @@ -1 - @@ -57669,7 +57295,6 @@ -1 - @@ -57739,7 +57364,6 @@ -1 - @@ -57755,7 +57379,6 @@ -1 - @@ -57771,7 +57394,6 @@ -1 - @@ -57787,7 +57409,6 @@ -1 - @@ -60112,7 +59733,6 @@ -1 - @@ -60128,7 +59748,6 @@ -1 - @@ -60144,7 +59763,6 @@ -1 - @@ -60192,7 +59810,6 @@ -1 - @@ -60208,7 +59825,6 @@ -1 - @@ -60224,7 +59840,6 @@ 1 - @@ -60240,7 +59855,6 @@ -1 - @@ -60256,7 +59870,6 @@ -1 - @@ -60326,7 +59939,6 @@ -1 - @@ -60374,7 +59986,6 @@ -1 - @@ -60463,7 +60074,6 @@ -1 - @@ -60479,7 +60089,6 @@ -1 - @@ -60495,7 +60104,6 @@ -1 - @@ -60511,7 +60119,6 @@ -1 - @@ -60527,7 +60134,6 @@ -1 - @@ -60575,7 +60181,6 @@ -1 - @@ -60591,7 +60196,6 @@ -1 - @@ -60661,7 +60265,6 @@ -1 - @@ -60764,7 +60367,6 @@ -1 - @@ -60780,7 +60382,6 @@ -1 - @@ -60796,7 +60397,6 @@ -1 - @@ -60812,7 +60412,6 @@ -1 - @@ -60828,7 +60427,6 @@ -1 - @@ -60876,7 +60474,6 @@ -1 - @@ -60892,7 +60489,6 @@ -1 - @@ -60962,7 +60558,6 @@ -1 - @@ -61183,7 +60778,6 @@ -1 - @@ -61199,7 +60793,6 @@ -1 - @@ -61215,7 +60808,6 @@ -1 - @@ -61231,7 +60823,6 @@ -1 - @@ -61247,7 +60838,6 @@ -1 - @@ -61295,7 +60885,6 @@ -1 - @@ -61311,7 +60900,6 @@ -1 - @@ -61381,7 +60969,6 @@ -1 - @@ -61849,7 +61436,6 @@ -1 - @@ -61865,7 +61451,6 @@ -1 - @@ -61881,7 +61466,6 @@ -1 - @@ -61897,7 +61481,6 @@ -1 - @@ -61913,7 +61496,6 @@ 1 - @@ -61929,7 +61511,6 @@ -1 - @@ -61945,7 +61526,6 @@ -1 - @@ -62015,7 +61595,6 @@ -1 - @@ -62063,7 +61642,6 @@ -1 - @@ -62133,7 +61711,6 @@ -1 - @@ -63571,7 +63148,6 @@ -1 - @@ -63587,7 +63163,6 @@ -1 - @@ -63603,7 +63178,6 @@ -1 - @@ -63648,7 +63222,6 @@ -1 - @@ -63664,7 +63237,6 @@ -1 - @@ -63680,7 +63252,6 @@ 1 - @@ -63696,7 +63267,6 @@ -1 - @@ -63712,7 +63282,6 @@ -1 - @@ -63776,7 +63345,6 @@ -1 - @@ -63821,7 +63389,6 @@ -1 - @@ -63901,7 +63468,6 @@ -1 - @@ -63917,7 +63483,6 @@ -1 - @@ -63933,7 +63498,6 @@ -1 - @@ -63949,7 +63513,6 @@ -1 - @@ -63965,7 +63528,6 @@ -1 - @@ -64010,7 +63572,6 @@ -1 - @@ -64026,7 +63587,6 @@ -1 - @@ -64090,7 +63650,6 @@ -1 - @@ -64155,7 +63714,6 @@ -1 - @@ -64200,7 +63758,6 @@ -1 - @@ -64264,7 +63821,6 @@ -1 - @@ -65801,7 +65357,6 @@ -1 - @@ -65817,7 +65372,6 @@ -2 - @@ -65865,7 +65419,6 @@ -1 - @@ -65935,7 +65488,6 @@ -1 - @@ -66045,7 +65597,6 @@ -1 - @@ -66061,7 +65612,6 @@ -2 - @@ -66109,7 +65659,6 @@ -1 - @@ -66179,7 +65728,6 @@ -1 - @@ -66305,7 +65853,6 @@ -1 - @@ -66321,7 +65868,6 @@ 1 - @@ -66337,7 +65883,6 @@ 1 - @@ -66353,7 +65898,6 @@ 1 - @@ -66401,7 +65945,6 @@ -1 - @@ -66417,7 +65960,6 @@ 1 - @@ -66487,7 +66029,6 @@ -1 - @@ -66503,7 +66044,6 @@ 1 - @@ -66551,7 +66091,6 @@ -1 - @@ -66567,7 +66106,6 @@ 1 - @@ -66728,7 +66266,6 @@ -1 - @@ -66744,7 +66281,6 @@ 1 - @@ -66760,7 +66296,6 @@ 1 - @@ -66776,7 +66311,6 @@ 1 - @@ -66824,7 +66358,6 @@ -1 - @@ -66926,7 +66459,6 @@ -1 - @@ -66942,7 +66474,6 @@ 1 - @@ -66958,7 +66489,6 @@ 1 - @@ -66974,7 +66504,6 @@ 1 - @@ -67022,7 +66551,6 @@ -1 - @@ -67038,7 +66566,6 @@ -1 - @@ -67054,7 +66581,6 @@ 1 - @@ -67124,7 +66650,6 @@ -1 - @@ -67140,7 +66665,6 @@ -1 - @@ -67156,7 +66680,6 @@ 1 - @@ -67172,7 +66695,6 @@ 1 - @@ -67188,7 +66710,6 @@ 1 - @@ -67204,7 +66725,6 @@ -1 - @@ -67252,7 +66772,6 @@ -1 - @@ -67268,7 +66787,6 @@ -1 - @@ -67338,7 +66856,6 @@ -1 - @@ -67354,7 +66871,6 @@ -1 - @@ -67370,7 +66886,6 @@ 1 - @@ -67418,7 +66933,6 @@ -1 - @@ -67434,7 +66948,6 @@ 1 - @@ -67504,7 +67017,6 @@ -1 - @@ -67520,7 +67032,6 @@ -1 - @@ -67536,7 +67047,6 @@ -1 - @@ -67552,7 +67062,6 @@ 1 - @@ -67568,7 +67077,6 @@ -1 - @@ -67616,7 +67124,6 @@ -1 - @@ -67686,7 +67193,6 @@ -1 - @@ -67756,7 +67262,6 @@ -1 - @@ -67804,7 +67309,6 @@ -1 - @@ -67874,7 +67378,6 @@ -1 - @@ -68017,7 +67520,6 @@ -1 - @@ -68033,7 +67535,6 @@ 1 - @@ -68049,7 +67550,6 @@ 1 - @@ -68065,7 +67565,6 @@ 1 - @@ -68113,7 +67612,6 @@ -1 - @@ -68129,7 +67627,6 @@ -1 - @@ -68145,7 +67642,6 @@ 1 - @@ -68215,7 +67711,6 @@ -1 - @@ -68231,7 +67726,6 @@ -1 - @@ -68247,7 +67741,6 @@ 1 - @@ -68263,7 +67756,6 @@ 1 - @@ -68279,7 +67771,6 @@ 1 - @@ -68295,7 +67786,6 @@ -1 - @@ -68343,7 +67833,6 @@ -1 - @@ -68359,7 +67848,6 @@ -1 - @@ -68429,7 +67917,6 @@ -1 - @@ -68445,7 +67932,6 @@ -1 - @@ -68461,7 +67947,6 @@ 1 - @@ -68509,7 +67994,6 @@ -1 - @@ -68525,7 +68009,6 @@ 1 - @@ -68595,7 +68078,6 @@ -1 - @@ -68611,7 +68093,6 @@ -1 - @@ -68627,7 +68108,6 @@ -1 - @@ -68643,7 +68123,6 @@ 1 - @@ -68659,7 +68138,6 @@ -1 - @@ -68707,7 +68185,6 @@ -1 - @@ -68777,7 +68254,6 @@ -1 - @@ -68847,7 +68323,6 @@ -1 - @@ -68895,7 +68370,6 @@ -1 - @@ -68965,7 +68439,6 @@ -1 - @@ -70817,7 +70290,6 @@ -1 - @@ -70865,7 +70337,6 @@ -1 - @@ -70935,7 +70406,6 @@ -1 - @@ -70983,7 +70453,6 @@ -1 - @@ -71053,7 +70522,6 @@ -1 - @@ -73162,7 +72630,6 @@ -1 - @@ -73210,7 +72677,6 @@ -1 - @@ -73280,7 +72746,6 @@ -1 - @@ -75022,7 +74487,6 @@ -1 - @@ -75070,7 +74534,6 @@ -1 - @@ -75140,7 +74603,6 @@ -1 - @@ -78197,7 +77659,6 @@ -1 - @@ -78213,7 +77674,6 @@ 1 - @@ -78261,7 +77721,6 @@ 1 - @@ -78331,7 +77790,6 @@ -1 - @@ -78347,7 +77805,6 @@ 1 - @@ -78395,7 +77852,6 @@ -1 - @@ -78545,7 +78001,6 @@ -1 - @@ -78561,7 +78016,6 @@ 1 - @@ -78609,7 +78063,6 @@ 1 - @@ -78679,7 +78132,6 @@ -1 - @@ -78695,7 +78147,6 @@ 1 - @@ -78743,7 +78194,6 @@ 1 - @@ -84318,7 +83768,6 @@ Unspecified - @@ -84333,7 +83782,6 @@ Object - @@ -84348,7 +83796,6 @@ Variable - @@ -84363,7 +83810,6 @@ Method - @@ -84378,7 +83824,6 @@ ObjectType - @@ -84393,7 +83838,6 @@ VariableType - @@ -84408,7 +83852,6 @@ ReferenceType - @@ -84423,7 +83866,6 @@ DataType - @@ -84438,7 +83880,6 @@ View - @@ -85668,7 +85109,6 @@ None - @@ -85683,7 +85123,6 @@ AccessLevel - @@ -85698,7 +85137,6 @@ ArrayDimensions - @@ -85713,7 +85151,6 @@ BrowseName - @@ -85728,7 +85165,6 @@ ContainsNoLoops - @@ -85743,7 +85179,6 @@ DataType - @@ -85758,7 +85193,6 @@ Description - @@ -85773,7 +85207,6 @@ DisplayName - @@ -85788,7 +85221,6 @@ EventNotifier - @@ -85803,7 +85235,6 @@ Executable - @@ -85818,7 +85249,6 @@ Historizing - @@ -85833,7 +85263,6 @@ InverseName - @@ -85848,7 +85277,6 @@ IsAbstract - @@ -85863,7 +85291,6 @@ MinimumSamplingInterval - @@ -85878,7 +85305,6 @@ NodeClass - @@ -85893,7 +85319,6 @@ NodeId - @@ -85908,7 +85333,6 @@ Symmetric - @@ -85923,7 +85347,6 @@ UserAccessLevel - @@ -85938,7 +85361,6 @@ UserExecutable - @@ -85953,7 +85375,6 @@ UserWriteMask - @@ -85968,7 +85389,6 @@ ValueRank - @@ -85983,7 +85403,6 @@ WriteMask - @@ -85998,7 +85417,6 @@ Value - @@ -86013,7 +85431,6 @@ DataTypeDefinition - @@ -86028,7 +85445,6 @@ RolePermissions - @@ -86043,7 +85459,6 @@ AccessRestrictions - @@ -86058,7 +85473,6 @@ All - @@ -86073,7 +85487,6 @@ BaseNode - @@ -86088,7 +85501,6 @@ Object - @@ -86103,7 +85515,6 @@ ObjectType - @@ -86118,7 +85529,6 @@ Variable - @@ -86133,7 +85543,6 @@ VariableType - @@ -86148,7 +85557,6 @@ Method - @@ -86163,7 +85571,6 @@ ReferenceType - @@ -86178,7 +85585,6 @@ View - @@ -86764,7 +86170,6 @@ Insert - @@ -86779,7 +86184,6 @@ Replace - @@ -86794,7 +86198,6 @@ Update - @@ -86809,7 +86212,6 @@ Delete - @@ -86869,7 +86271,6 @@ Insert - @@ -86884,7 +86285,6 @@ Replace - @@ -86899,7 +86299,6 @@ Update - @@ -86914,7 +86313,6 @@ Remove - @@ -91609,8 +91007,8 @@ aWFnbm9zdGljIGluZm9ybWF0aW9uIGFzc29jaWF0ZWQgd2l0aCBhIHN0YXR1cyBjb2RlLjwvb3Bj OkRvY3VtZW50YXRpb24+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJTeW1ib2xpY0lkU3BlY2lmaWVk IiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZpZWxkIE5hbWU9Ik5hbWVzcGFjZVVS SVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJM -b2NhbGVTcGVjaWZpZWQiIFR5cGVOYW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFt -ZT0iTG9jYWxpemVkVGV4dFNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w +b2NhbGl6ZWRUZXh0U3BlY2lmaWVkIiBUeXBlTmFtZT0ib3BjOkJpdCIgLz4NCiAgICA8b3BjOkZp +ZWxkIE5hbWU9IkxvY2FsZVNwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQiIC8+DQogICAgPG9w YzpGaWVsZCBOYW1lPSJBZGRpdGlvbmFsSW5mb1NwZWNpZmllZCIgVHlwZU5hbWU9Im9wYzpCaXQi IC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJJbm5lclN0YXR1c0NvZGVTcGVjaWZpZWQiIFR5cGVO YW1lPSJvcGM6Qml0IiAvPg0KICAgIDxvcGM6RmllbGQgTmFtZT0iSW5uZXJEaWFnbm9zdGljSW5m diff --git a/Core/Types/Encoders/XmlEncoder.cs b/Core/Types/Encoders/XmlEncoder.cs index 58ee5d47..e36bfe87 100644 --- a/Core/Types/Encoders/XmlEncoder.cs +++ b/Core/Types/Encoders/XmlEncoder.cs @@ -1933,6 +1933,11 @@ private bool BeginField(string fieldName, bool isDefault, bool isNillable) // specifying a null field name means the start/end tags should not be written. if (!String.IsNullOrEmpty(fieldName)) { + if (isNillable && isDefault) + { + return false; + } + m_writer.WriteStartElement(fieldName, m_namespaces.Peek()); if (isDefault) diff --git a/Core/Types/Schemas/SchemaValidator.cs b/Core/Types/Schemas/SchemaValidator.cs index 7320817d..8230d6de 100644 --- a/Core/Types/Schemas/SchemaValidator.cs +++ b/Core/Types/Schemas/SchemaValidator.cs @@ -282,6 +282,8 @@ protected static object LoadFile(System.Type type, Stream stream) /// protected static object LoadResource(System.Type type, string path, Assembly assembly) { + var names = assembly.GetManifestResourceNames(); + try { StreamReader reader = new StreamReader(assembly.GetManifestResourceStream(path)); diff --git a/ModelCompiler/Design.v103/BuiltInTypes.xml b/ModelCompiler/Design.v103/BuiltInTypes.xml index 87aab0f1..d352b796 100644 --- a/ModelCompiler/Design.v103/BuiltInTypes.xml +++ b/ModelCompiler/Design.v103/BuiltInTypes.xml @@ -8,7 +8,7 @@ xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" TargetNamespace="http://opcfoundation.org/UA/" TargetVersion="1.03" - TargetPublicationDate="2013-12-02T00:00:00Z" + TargetPublicationDate="2013-12-03T00:00:00Z" > http://opcfoundation.org/UA/ diff --git a/ModelCompiler/Design.v103/MDIS.csv b/ModelCompiler/Design.v103/MDIS.csv new file mode 100644 index 00000000..f1bad297 --- /dev/null +++ b/ModelCompiler/Design.v103/MDIS.csv @@ -0,0 +1,425 @@ +CommandEnum,3,DataType +SEMEnum,5,DataType +SEMEnum_EnumValues,6,Variable +MoveType,190,Method +MoveType_InputArguments,191,Variable +EnableDisableType,192,Method +EnableDisableType_InputArguments,193,Variable +MDISBaseObjectType,194,ObjectType +MDISBaseObjectType_EnableDisable,195,Method +MDISBaseObjectType_EnableDisable_InputArguments,196,Variable +MDISBaseObjectType_TagId,197,Variable +MDIS_XmlSchema,367,Variable +MDIS_XmlSchema_DataTypeVersion,368,Variable +MDIS_XmlSchema_NamespaceUri,369,Variable +MDIS_BinarySchema,374,Variable +MDIS_BinarySchema_DataTypeVersion,375,Variable +MDIS_BinarySchema_NamespaceUri,376,Variable +MDISBaseObjectType_Enabled,476,Variable +MDISBaseObjectType_Fault,489,Variable +MDISBaseObjectType_Warning,497,Variable +ChokeMoveType,498,Method +ChokeMoveType_InputArguments,499,Variable +ChokeStepType,500,Method +ChokeStepType_InputArguments,501,Variable +ChokeAbortType,502,Method +ChokeMoveEnum,602,DataType +ChokeMoveEnum_EnumValues,603,Variable +CommandEnum_EnumValues,616,Variable +SignatureStatusEnum,699,DataType +SignatureStatusEnum_EnumValues,700,Variable +ChokeCommandEnum,701,DataType +ChokeCommandEnum_EnumValues,702,Variable +ValvePositionEnum,703,DataType +ValvePositionEnum_EnumValues,704,Variable +MDISValveObjectType,794,ObjectType +MDISValveObjectType_Fault,795,Variable +MDISValveObjectType_Warning,796,Variable +MDISValveObjectType_Enabled,797,Variable +MDISValveObjectType_EnableDisable,798,Method +MDISValveObjectType_EnableDisable_InputArguments,799,Variable +MDISValveObjectType_TagId,800,Variable +MDISValveObjectType_Position,875,Variable +MDISValveObjectType_CommandRejected,876,Variable +MDISValveObjectType_SignatureRequestStatus,877,Variable +MDISValveObjectType_LastCommand,878,Variable +MDISValveObjectType_NonDefeatableOpenInterlock,879,Variable +MDISValveObjectType_DefeatableOpenInterlock,880,Variable +MDISValveObjectType_NonDefeatableCloseInterlock,881,Variable +MDISValveObjectType_DefeatableCloseInterlock,882,Variable +MDISValveObjectType_Move,883,Method +MDISValveObjectType_Move_InputArguments,884,Variable +MDISValveObjectType_OpenTimeDuration,887,Variable +MDISValveObjectType_CloseTimeDuration,888,Variable +MDISDigitalInstrumentObjectType,889,ObjectType +MDISDigitalInstrumentObjectType_Fault,890,Variable +MDISDigitalInstrumentObjectType_Warning,891,Variable +MDISDigitalInstrumentObjectType_Enabled,892,Variable +MDISDigitalInstrumentObjectType_EnableDisable,893,Method +MDISDigitalInstrumentObjectType_EnableDisable_InputArguments,894,Variable +MDISDigitalInstrumentObjectType_TagId,895,Variable +MDISDigitalInstrumentObjectType_State,970,Variable +MDISInstrumentObjectType,971,ObjectType +MDISInstrumentObjectType_Fault,972,Variable +MDISInstrumentObjectType_Warning,973,Variable +MDISInstrumentObjectType_Enabled,974,Variable +MDISInstrumentObjectType_EnableDisable,975,Method +MDISInstrumentObjectType_EnableDisable_InputArguments,976,Variable +MDISInstrumentObjectType_TagId,977,Variable +MDISInstrumentObjectType_ProcessVariable,1052,Variable +MDISInstrumentObjectType_ProcessVariable_Definition,1053,Variable +MDISInstrumentObjectType_ProcessVariable_ValuePrecision,1054,Variable +MDISInstrumentObjectType_ProcessVariable_InstrumentRange,1055,Variable +MDISInstrumentObjectType_ProcessVariable_EURange,1056,Variable +MDISInstrumentObjectType_ProcessVariable_EngineeringUnits,1057,Variable +MDISInstrumentObjectType_HHlimit,1058,Variable +MDISInstrumentObjectType_Hlimit,1059,Variable +MDISInstrumentObjectType_Llimit,1060,Variable +MDISInstrumentObjectType_LLlimit,1061,Variable +MDISInstrumentObjectType_HHSetPoint,1062,Variable +MDISInstrumentObjectType_HSetPoint,1063,Variable +MDISInstrumentObjectType_LSetPoint,1064,Variable +MDISInstrumentObjectType_LLSetPoint,1065,Variable +MDISChokeObjectType,1066,ObjectType +MDISChokeObjectType_Fault,1067,Variable +MDISChokeObjectType_Warning,1068,Variable +MDISChokeObjectType_Enabled,1069,Variable +MDISChokeObjectType_EnableDisable,1070,Method +MDISChokeObjectType_EnableDisable_InputArguments,1071,Variable +MDISChokeObjectType_TagId,1072,Variable +MDISChokeObjectType_CalculatedPosition,1147,Variable +MDISChokeObjectType_PositionInSteps,1148,Variable +MDISChokeObjectType_Moving,1149,Variable +MDISChokeObjectType_CommandRejected,1150,Variable +MDISChokeObjectType_NonDefeatableOpenInterlock,1151,Variable +MDISChokeObjectType_DefeatableOpenInterlock,1152,Variable +MDISChokeObjectType_NonDefeatableCloseInterlock,1153,Variable +MDISChokeObjectType_DefeatableCloseInterlock,1154,Variable +MDISChokeObjectType_Move,1155,Method +MDISChokeObjectType_Move_InputArguments,1156,Variable +MDISChokeObjectType_Step,1157,Method +MDISChokeObjectType_Step_InputArguments,1158,Variable +MDISChokeObjectType_Abort,1159,Method +MDISChokeObjectType_StepDurationOpen,1162,Variable +MDISChokeObjectType_StepDurationClose,1163,Variable +MDISChokeObjectType_TotalSteps,1164,Variable +MDISBaseObjectType_FaultCode,1165,Variable +MDISBaseObjectType_WarningCode,1166,Variable +MDISValveObjectType_FaultCode,1173,Variable +MDISValveObjectType_WarningCode,1174,Variable +MDISDigitalInstrumentObjectType_FaultCode,1176,Variable +MDISDigitalInstrumentObjectType_WarningCode,1177,Variable +MDISInstrumentObjectType_FaultCode,1178,Variable +MDISInstrumentObjectType_WarningCode,1179,Variable +MDISChokeObjectType_FaultCode,1180,Variable +MDISChokeObjectType_WarningCode,1181,Variable +HasInterlock,1183,ReferenceType +InterlockFor,1184,ReferenceType +MDISDiscreteInstrumentObjectType,1214,ObjectType +MDISDiscreteInstrumentObjectType_Fault,1215,Variable +MDISDiscreteInstrumentObjectType_FaultCode,1216,Variable +MDISDiscreteInstrumentObjectType_Warning,1217,Variable +MDISDiscreteInstrumentObjectType_WarningCode,1218,Variable +MDISDiscreteInstrumentObjectType_Enabled,1219,Variable +MDISDiscreteInstrumentObjectType_EnableDisable,1220,Method +MDISDiscreteInstrumentObjectType_EnableDisable_InputArguments,1221,Variable +MDISDiscreteInstrumentObjectType_TagId,1222,Variable +MDISDiscreteInstrumentObjectType_State,1223,Variable +WriteStateType,1224,Method +WriteStateType_InputArguments,1225,Variable +WriteValueType,1226,Method +WriteValueType_InputArguments,1227,Variable +WriteInstrumentValueType,1228,Method +WriteInstrumentValueType_InputArguments,1229,Variable +MDISDigitalOutObjectType,1230,ObjectType +MDISDigitalOutObjectType_Fault,1231,Variable +MDISDigitalOutObjectType_FaultCode,1232,Variable +MDISDigitalOutObjectType_Warning,1233,Variable +MDISDigitalOutObjectType_WarningCode,1234,Variable +MDISDigitalOutObjectType_Enabled,1235,Variable +MDISDigitalOutObjectType_EnableDisable,1236,Method +MDISDigitalOutObjectType_EnableDisable_InputArguments,1237,Variable +MDISDigitalOutObjectType_TagId,1238,Variable +MDISDigitalOutObjectType_State,1239,Variable +MDISDigitalOutObjectType_WriteState,1240,Method +MDISDigitalOutObjectType_WriteState_InputArguments,1241,Variable +MDISDiscreteOutObjectType,1242,ObjectType +MDISDiscreteOutObjectType_Fault,1243,Variable +MDISDiscreteOutObjectType_FaultCode,1244,Variable +MDISDiscreteOutObjectType_Warning,1245,Variable +MDISDiscreteOutObjectType_WarningCode,1246,Variable +MDISDiscreteOutObjectType_Enabled,1247,Variable +MDISDiscreteOutObjectType_EnableDisable,1248,Method +MDISDiscreteOutObjectType_EnableDisable_InputArguments,1249,Variable +MDISDiscreteOutObjectType_TagId,1250,Variable +MDISDiscreteOutObjectType_State,1251,Variable +MDISDiscreteOutObjectType_WriteValue,1252,Method +MDISDiscreteOutObjectType_WriteValue_InputArguments,1253,Variable +MDISInstrumentOutObjectType,1254,ObjectType +MDISInstrumentOutObjectType_Fault,1255,Variable +MDISInstrumentOutObjectType_FaultCode,1256,Variable +MDISInstrumentOutObjectType_Warning,1257,Variable +MDISInstrumentOutObjectType_WarningCode,1258,Variable +MDISInstrumentOutObjectType_Enabled,1259,Variable +MDISInstrumentOutObjectType_EnableDisable,1260,Method +MDISInstrumentOutObjectType_EnableDisable_InputArguments,1261,Variable +MDISInstrumentOutObjectType_TagId,1262,Variable +MDISInstrumentOutObjectType_ProcessVariable,1263,Variable +MDISInstrumentOutObjectType_ProcessVariable_Definition,1264,Variable +MDISInstrumentOutObjectType_ProcessVariable_ValuePrecision,1265,Variable +MDISInstrumentOutObjectType_ProcessVariable_InstrumentRange,1266,Variable +MDISInstrumentOutObjectType_ProcessVariable_EURange,1267,Variable +MDISInstrumentOutObjectType_ProcessVariable_EngineeringUnits,1268,Variable +MDISInstrumentOutObjectType_HHlimit,1269,Variable +MDISInstrumentOutObjectType_Hlimit,1270,Variable +MDISInstrumentOutObjectType_Llimit,1271,Variable +MDISInstrumentOutObjectType_LLlimit,1272,Variable +MDISInstrumentOutObjectType_HHSetPoint,1273,Variable +MDISInstrumentOutObjectType_HSetPoint,1274,Variable +MDISInstrumentOutObjectType_LSetPoint,1275,Variable +MDISInstrumentOutObjectType_LLSetPoint,1276,Variable +MDISInstrumentOutObjectType_WriteValue,1277,Method +MDISInstrumentOutObjectType_WriteValue_InputArguments,1278,Variable +InterlockVariableType,1279,VariableType +MDISValveObjectType_InterlockPlaceholder,1280,Variable +MDISChokeObjectType_InterlockPlaceholder,1281,Variable +ChokeSetCalculatedPositionType,1282,Method +ChokeSetCalculatedPositionType_InputArguments,1283,Variable +MDISChokeObjectType_SetCalculatedPosition,1284,Method +MDISChokeObjectType_SetCalculatedPosition_InputArguments,1285,Variable +HasSignature,1286,ReferenceType +SetCalculatedPositionEnum,1287,DataType +SetCalculatedPositionEnum_EnumValues,1288,Variable +MDISVersionDataType,1289,DataType +MDISVersionVariableType,1290,VariableType +MDISVersionVariableType_MajorVersion,1291,Variable +MDISVersionVariableType_MinorVersion,1292,Variable +MDISVersionVariableType_Build,1293,Variable +MDISValveObjectType_ValveSignature,1294,Object +MDISValveObjectType_ValveSignature_Size,1295,Variable +MDISValveObjectType_ValveSignature_Writable,1296,Variable +MDISValveObjectType_ValveSignature_UserWritable,1297,Variable +MDISValveObjectType_ValveSignature_OpenCount,1298,Variable +MDISValveObjectType_ValveSignature_Open,1299,Method +MDISValveObjectType_ValveSignature_Open_InputArguments,1300,Variable +MDISValveObjectType_ValveSignature_Open_OutputArguments,1301,Variable +MDISValveObjectType_ValveSignature_Close,1302,Method +MDISValveObjectType_ValveSignature_Close_InputArguments,1303,Variable +MDISValveObjectType_ValveSignature_Read,1304,Method +MDISValveObjectType_ValveSignature_Read_InputArguments,1305,Variable +MDISValveObjectType_ValveSignature_Read_OutputArguments,1306,Variable +MDISValveObjectType_ValveSignature_Write,1307,Method +MDISValveObjectType_ValveSignature_Write_InputArguments,1308,Variable +MDISValveObjectType_ValveSignature_GetPosition,1309,Method +MDISValveObjectType_ValveSignature_GetPosition_InputArguments,1310,Variable +MDISValveObjectType_ValveSignature_GetPosition_OutputArguments,1311,Variable +MDISValveObjectType_ValveSignature_SetPosition,1312,Method +MDISValveObjectType_ValveSignature_SetPosition_InputArguments,1313,Variable +MDISChokeObjectType_SetCalculatedPositionStatus,1314,Variable +MDISAggregateObjectType,1315,ObjectType +MDISAggregateObjectType_Fault,1316,Variable +MDISAggregateObjectType_FaultCode,1317,Variable +MDISAggregateObjectType_Warning,1318,Variable +MDISAggregateObjectType_WarningCode,1319,Variable +MDISAggregateObjectType_Enabled,1320,Variable +MDISAggregateObjectType_EnableDisable,1321,Method +MDISAggregateObjectType_EnableDisable_InputArguments,1322,Variable +MDISAggregateObjectType_TagId,1323,Variable +MDISAggregateObjectType_InstrumentPlaceholder,1324,Object +MDISAggregateObjectType_InstrumentPlaceholder_Fault,1325,Variable +MDISAggregateObjectType_InstrumentPlaceholder_FaultCode,1326,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Warning,1327,Variable +MDISAggregateObjectType_InstrumentPlaceholder_WarningCode,1328,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Enabled,1329,Variable +MDISAggregateObjectType_InstrumentPlaceholder_EnableDisable,1330,Method +MDISAggregateObjectType_InstrumentPlaceholder_EnableDisable_InputArguments,1331,Variable +MDISAggregateObjectType_InstrumentPlaceholder_TagId,1332,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable,1333,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_Definition,1334,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_ValuePrecision,1335,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_InstrumentRange,1336,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_EURange,1337,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_EngineeringUnits,1338,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HHlimit,1339,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Hlimit,1340,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Llimit,1341,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LLlimit,1342,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HHSetPoint,1343,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HSetPoint,1344,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LSetPoint,1345,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LLSetPoint,1346,Variable +MDISAggregateObjectType_DigitalPlaceholder,1347,Object +MDISAggregateObjectType_DigitalPlaceholder_Fault,1348,Variable +MDISAggregateObjectType_DigitalPlaceholder_FaultCode,1349,Variable +MDISAggregateObjectType_DigitalPlaceholder_Warning,1350,Variable +MDISAggregateObjectType_DigitalPlaceholder_WarningCode,1351,Variable +MDISAggregateObjectType_DigitalPlaceholder_Enabled,1352,Variable +MDISAggregateObjectType_DigitalPlaceholder_EnableDisable,1353,Method +MDISAggregateObjectType_DigitalPlaceholder_EnableDisable_InputArguments,1354,Variable +MDISAggregateObjectType_DigitalPlaceholder_TagId,1355,Variable +MDISAggregateObjectType_DigitalPlaceholder_State,1356,Variable +MDISAggregateObjectType_DiscretePlaceholder,1357,Object +MDISAggregateObjectType_DiscretePlaceholder_Fault,1358,Variable +MDISAggregateObjectType_DiscretePlaceholder_FaultCode,1359,Variable +MDISAggregateObjectType_DiscretePlaceholder_Warning,1360,Variable +MDISAggregateObjectType_DiscretePlaceholder_WarningCode,1361,Variable +MDISAggregateObjectType_DiscretePlaceholder_Enabled,1362,Variable +MDISAggregateObjectType_DiscretePlaceholder_EnableDisable,1363,Method +MDISAggregateObjectType_DiscretePlaceholder_EnableDisable_InputArguments,1364,Variable +MDISAggregateObjectType_DiscretePlaceholder_TagId,1365,Variable +MDISAggregateObjectType_DiscretePlaceholder_State,1366,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder,1367,Object +MDISAggregateObjectType_InstrumentOutPlaceholder_Fault,1368,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_FaultCode,1369,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Warning,1370,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_WarningCode,1371,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Enabled,1372,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_EnableDisable,1373,Method +MDISAggregateObjectType_InstrumentOutPlaceholder_EnableDisable_InputArguments,1374,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_TagId,1375,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable,1376,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_Definition,1377,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_ValuePrecision,1378,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_InstrumentRange,1379,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_EURange,1380,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_EngineeringUnits,1381,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HHlimit,1382,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Hlimit,1383,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Llimit,1384,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LLlimit,1385,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HHSetPoint,1386,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HSetPoint,1387,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LSetPoint,1388,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LLSetPoint,1389,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_WriteValue,1390,Method +MDISAggregateObjectType_InstrumentOutPlaceholder_WriteValue_InputArguments,1391,Variable +MDISAggregateObjectType_DigitalOutPlaceholder,1392,Object +MDISAggregateObjectType_DigitalOutPlaceholder_Fault,1393,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_FaultCode,1394,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_Warning,1395,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_WarningCode,1396,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_Enabled,1397,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_EnableDisable,1398,Method +MDISAggregateObjectType_DigitalOutPlaceholder_EnableDisable_InputArguments,1399,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_TagId,1400,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_State,1401,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_WriteState,1402,Method +MDISAggregateObjectType_DigitalOutPlaceholder_WriteState_InputArguments,1403,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder,1404,Object +MDISAggregateObjectType_DiscreteOutPlaceholder_Fault,1405,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_FaultCode,1406,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_Warning,1407,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_WarningCode,1408,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_Enabled,1409,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_EnableDisable,1410,Method +MDISAggregateObjectType_DiscreteOutPlaceholder_EnableDisable_InputArguments,1411,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_TagId,1412,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_State,1413,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_WriteValue,1414,Method +MDISAggregateObjectType_DiscreteOutPlaceholder_WriteValue_InputArguments,1415,Variable +MDISAggregateObjectType_ValvePlaceholder,1416,Object +MDISAggregateObjectType_ValvePlaceholder_Fault,1417,Variable +MDISAggregateObjectType_ValvePlaceholder_FaultCode,1418,Variable +MDISAggregateObjectType_ValvePlaceholder_Warning,1419,Variable +MDISAggregateObjectType_ValvePlaceholder_WarningCode,1420,Variable +MDISAggregateObjectType_ValvePlaceholder_Enabled,1421,Variable +MDISAggregateObjectType_ValvePlaceholder_EnableDisable,1422,Method +MDISAggregateObjectType_ValvePlaceholder_EnableDisable_InputArguments,1423,Variable +MDISAggregateObjectType_ValvePlaceholder_TagId,1424,Variable +MDISAggregateObjectType_ValvePlaceholder_Position,1425,Variable +MDISAggregateObjectType_ValvePlaceholder_CommandRejected,1426,Variable +MDISAggregateObjectType_ValvePlaceholder_SignatureRequestStatus,1427,Variable +MDISAggregateObjectType_ValvePlaceholder_LastCommand,1428,Variable +MDISAggregateObjectType_ValvePlaceholder_NonDefeatableOpenInterlock,1429,Variable +MDISAggregateObjectType_ValvePlaceholder_DefeatableOpenInterlock,1430,Variable +MDISAggregateObjectType_ValvePlaceholder_NonDefeatableCloseInterlock,1431,Variable +MDISAggregateObjectType_ValvePlaceholder_DefeatableCloseInterlock,1432,Variable +MDISAggregateObjectType_ValvePlaceholder_Move,1433,Method +MDISAggregateObjectType_ValvePlaceholder_Move_InputArguments,1434,Variable +MDISAggregateObjectType_ValvePlaceholder_OpenTimeDuration,1435,Variable +MDISAggregateObjectType_ValvePlaceholder_CloseTimeDuration,1436,Variable +MDISAggregateObjectType_ChokePlaceholder,1437,Object +MDISAggregateObjectType_ChokePlaceholder_Fault,1438,Variable +MDISAggregateObjectType_ChokePlaceholder_FaultCode,1439,Variable +MDISAggregateObjectType_ChokePlaceholder_Warning,1440,Variable +MDISAggregateObjectType_ChokePlaceholder_WarningCode,1441,Variable +MDISAggregateObjectType_ChokePlaceholder_Enabled,1442,Variable +MDISAggregateObjectType_ChokePlaceholder_EnableDisable,1443,Method +MDISAggregateObjectType_ChokePlaceholder_EnableDisable_InputArguments,1444,Variable +MDISAggregateObjectType_ChokePlaceholder_TagId,1445,Variable +MDISAggregateObjectType_ChokePlaceholder_CalculatedPosition,1446,Variable +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPositionStatus,1447,Variable +MDISAggregateObjectType_ChokePlaceholder_PositionInSteps,1448,Variable +MDISAggregateObjectType_ChokePlaceholder_Moving,1449,Variable +MDISAggregateObjectType_ChokePlaceholder_CommandRejected,1450,Variable +MDISAggregateObjectType_ChokePlaceholder_NonDefeatableOpenInterlock,1451,Variable +MDISAggregateObjectType_ChokePlaceholder_DefeatableOpenInterlock,1452,Variable +MDISAggregateObjectType_ChokePlaceholder_NonDefeatableCloseInterlock,1453,Variable +MDISAggregateObjectType_ChokePlaceholder_DefeatableCloseInterlock,1454,Variable +MDISAggregateObjectType_ChokePlaceholder_Move,1455,Method +MDISAggregateObjectType_ChokePlaceholder_Move_InputArguments,1456,Variable +MDISAggregateObjectType_ChokePlaceholder_Step,1457,Method +MDISAggregateObjectType_ChokePlaceholder_Step_InputArguments,1458,Variable +MDISAggregateObjectType_ChokePlaceholder_Abort,1459,Method +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPosition,1460,Method +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPosition_InputArguments,1461,Variable +MDISAggregateObjectType_ChokePlaceholder_StepDurationOpen,1462,Variable +MDISAggregateObjectType_ChokePlaceholder_StepDurationClose,1463,Variable +MDISAggregateObjectType_ChokePlaceholder_TotalSteps,1464,Variable +MDISAggregateObjectType_InterlockPlaceholder,1465,Variable +SetTimeType,1466,Method +SetTimeType_InputArguments,1467,Variable +MDISTimeSyncObjectType,1468,ObjectType +MDISTimeSyncObjectType_SetTime,1469,Method +MDISTimeSyncObjectType_SetTime_InputArguments,1470,Variable +MDISInformationObjectType,1471,ObjectType +MDISInformationObjectType_TimeSynchronization,1472,Object +MDISInformationObjectType_TimeSynchronization_SetTime,1473,Method +MDISInformationObjectType_TimeSynchronization_SetTime_InputArguments,1474,Variable +MDISInformationObjectType_Signatures,1475,Object +MDISInformationObjectType_MDISVersion,1476,Variable +MDISInformationObjectType_MDISVersion_MajorVersion,1477,Variable +MDISInformationObjectType_MDISVersion_MinorVersion,1478,Variable +MDISInformationObjectType_MDISVersion_Build,1479,Variable +MDISVersionDataType_Encoding_DefaultXml,1480,Object +MDIS_XmlSchema_MDISVersionDataType,1481,Variable +MDIS_XmlSchema_MDISVersionDataType_DataTypeVersion,1482,Variable +MDIS_XmlSchema_MDISVersionDataType_DictionaryFragment,1483,Variable +MDISVersionDataType_Encoding_DefaultBinary,1484,Object +MDIS_BinarySchema_MDISVersionDataType,1485,Variable +MDIS_BinarySchema_MDISVersionDataType_DataTypeVersion,1486,Variable +MDIS_BinarySchema_MDISVersionDataType_DictionaryFragment,1487,Variable +MDISValveObjectType_ValveSignature_MimeType,15001,Variable +MDISNamespaceMetadata,15002,Object +MDISNamespaceMetadata_NamespaceUri,15003,Variable +MDISNamespaceMetadata_NamespaceVersion,15004,Variable +MDISNamespaceMetadata_NamespacePublicationDate,15005,Variable +MDISNamespaceMetadata_IsNamespaceSubset,15006,Variable +MDISNamespaceMetadata_StaticNodeIdTypes,15007,Variable +MDISNamespaceMetadata_StaticNumericNodeIdRange,15008,Variable +MDISNamespaceMetadata_StaticStringNodeIdPattern,15009,Variable +MDISNamespaceMetadata_NamespaceFile,15010,Object +MDISNamespaceMetadata_NamespaceFile_Size,15011,Variable +MDISNamespaceMetadata_NamespaceFile_Writable,15012,Variable +MDISNamespaceMetadata_NamespaceFile_UserWritable,15013,Variable +MDISNamespaceMetadata_NamespaceFile_OpenCount,15014,Variable +MDISNamespaceMetadata_NamespaceFile_MimeType,15015,Variable +MDISNamespaceMetadata_NamespaceFile_Open,15016,Method +MDISNamespaceMetadata_NamespaceFile_Open_InputArguments,15017,Variable +MDISNamespaceMetadata_NamespaceFile_Open_OutputArguments,15018,Variable +MDISNamespaceMetadata_NamespaceFile_Close,15019,Method +MDISNamespaceMetadata_NamespaceFile_Close_InputArguments,15020,Variable +MDISNamespaceMetadata_NamespaceFile_Read,15021,Method +MDISNamespaceMetadata_NamespaceFile_Read_InputArguments,15022,Variable +MDISNamespaceMetadata_NamespaceFile_Read_OutputArguments,15023,Variable +MDISNamespaceMetadata_NamespaceFile_Write,15024,Method +MDISNamespaceMetadata_NamespaceFile_Write_InputArguments,15025,Variable +MDISNamespaceMetadata_NamespaceFile_GetPosition,15026,Method +MDISNamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15027,Variable +MDISNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15028,Variable +MDISNamespaceMetadata_NamespaceFile_SetPosition,15029,Method +MDISNamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15030,Variable +MDISNamespaceMetadata_NamespaceFile_ExportNamespace,15031,Method +MDISNamespaceMetadata_DefaultRolePermissions,15032,Variable +MDISNamespaceMetadata_DefaultUserRolePermissions,15033,Variable +MDISNamespaceMetadata_DefaultAccessRestrictions,15034,Variable diff --git a/ModelCompiler/Design.v103/MDIS.xml b/ModelCompiler/Design.v103/MDIS.xml new file mode 100644 index 00000000..d096e9e5 --- /dev/null +++ b/ModelCompiler/Design.v103/MDIS.xml @@ -0,0 +1,604 @@ + + + + + + http://opcfoundation.org/UA/ + http://opcfoundation.org/UA/MDIS + + + + http://opcfoundation.org/UA/GDS/ + + + + http://opcfoundation.org/UA/MDIS + + + + + 1.00 + + + + + 2018-10-03T00:00:00Z + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + ua:HasComponent + ua:Server_Namespaces + + + + + + + + + Disable the device (false), or enable the device (true) + + + + + + Reference used to indicate an interlock variable (all Options) + InterlockOf + + + + Reference used to indicate an interlock variable (all Options) + SignatureOf + + + + Reference used to indicate an interlock variable associated with the given boolean summary interlock + HasInterlockInformation + + + + The base Object type from which all other station types are built + + + + + + + + + + + + + + + Tag ID + The id used in other parts of the system + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Variable type returns a Boolean indicating if the interlock is active, it shall also contain an InterlockFor reference + + + + a standard representation of the version information that is related the MDIS Specification + + + + + + + + + + + + + + + + + The enumeration indicates whether the command is to open the valve or to close the valve + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + Boolean indicating if a profile should be generated by this move command request. + + + Boolean indicates that this command is a shutdown move command. + + + + + + + + + A number (in prercent) indicating the percent open + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + + + + + + + true is opening a valve, false if closing the valve + + + number of steps to open/close the valve + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + + + + + + + + + + + A number (in percent) indicating the percent open + + + + + + + + + + Boolean state that is being written to the object + + + + + + + + + Unit32 state that is being written to the object + + + + + + + + + Float value that is being written to the object + + + + + + + + The definition of a standard MDIS Valve Object + + + + + + + + + + + + + + + + + + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + <ValveSignature> + <ValveSignature> + HasSignature + + + + + + + + + The definition of a MDIS standard Digital Instrument + + + + + + + + + The definition of a MDIS standard Digital Output + + + + + + + + + The definition of a MDIS standard Discrete Instrument + + + + + + + + + The definition of a MDIS standard Discrete Instrument + + + + + + + + + The definition of a MDIS standard Instrument + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition of a MDIS standard instrument Output + + + + + + + + + + The definition of a standard MDIS Valve Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + + + + + + + + + The definition of a standard MDIS Valve Object + + + <InstrumentPlaceholder> + <InstrumentPlaceholder> + + + <DigitalPlaceholder> + <DigitalPlaceholder> + + + <DiscretePlaceholder> + <DiscretePlaceholder> + + + <InstrumentOutPlaceholder> + <InstrumentOutPlaceholder> + + + <DigitalOutPlaceholder> + <DigitalOutPlaceholder> + + + <DiscreteOutPlaceholder> + <DiscreteOutPlaceholder> + + + <ValvePlaceholder> + <ValvePlaceholder> + + + <ChokePlaceholder> + <ChokePlaceholder> + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + + + + + + The UTC Time that the Server shall use to update its internal clock. + + + + + + + The definition of a MDIS Time Sync object + + + + + + + + + The definition of a MDIS standard Information + + + + + + + + + + + \ No newline at end of file diff --git a/ModelCompiler/Design.v103/SercosModel.csv b/ModelCompiler/Design.v103/SercosModel.csv new file mode 100644 index 00000000..d54b4ac0 --- /dev/null +++ b/ModelCompiler/Design.v103/SercosModel.csv @@ -0,0 +1,119 @@ +SercosDeviceType,1001,ObjectType +SercosProfileType,1002,ObjectType +SercosClassType,1003,ObjectType +SercosFunctionGroupType,1004,ObjectType +SercosParameterType,2001,VariableType +SercosDeviceType_ProfileSet,5001,Object +SercosDeviceType_ClassSet,5002,Object +SercosDeviceType_FunctionGroupSet,5003,Object +SercosDeviceType_ParameterSet,5007,Object +SercosParameterType_MaxValue,6001,Variable +SercosParameterType_MinValue,6002,Variable +SercosParameterType_Attribute,6004,Variable +SercosParameterType_ProcedureCommand,6005,Variable +SercosParameterType_Exponent,6006,Variable +SercosParameterType_DisplayMinValue,6007,Variable +SercosParameterType_DisplayMaxValue,6008,Variable +SercosParameterType_DisplayValue,6009,Variable +FunctionalGroupType,6012,ObjectType +SercosDeviceType_ParameterSet_ParameterIdentifier,6013,Variable +SercosDeviceType_MethodSet,6014,Object +SercosDeviceType_MethodSet_MethodIdentifier,6015,Method +SercosDeviceType_GroupIdentifier,6016,Object +SercosDeviceType_GroupIdentifier_UIElement,6017,Variable +SercosDeviceType_Identification,6018,Object +SercosDeviceType_Identification_UIElement,6019,Variable +SercosDeviceType_Lock,6020,Object +SercosDeviceType_Lock_LockingClient,6022,Variable +SercosDeviceType_Lock_LockingUser,6023,Variable +SercosDeviceType_Lock_RemainingLockTime,6024,Variable +SercosDeviceType_Lock_InitLock,6025,Method +SercosDeviceType_Lock_InitLock_InputArguments,6026,Variable +SercosDeviceType_Lock_InitLock_OutputArguments,6027,Variable +SercosDeviceType_Lock_RenewLock,6028,Method +SercosDeviceType_Lock_RenewLock_OutputArguments,6029,Variable +SercosDeviceType_Lock_ExitLock,6030,Method +SercosDeviceType_Lock_ExitLock_OutputArguments,6031,Variable +SercosDeviceType_Lock_BreakLock,6032,Method +SercosDeviceType_Lock_BreakLock_OutputArguments,6033,Variable +SercosDeviceType_SerialNumber,6034,Variable +SercosDeviceType_RevisionCounter,6035,Variable +SercosDeviceType_Manufacturer,6036,Variable +SercosDeviceType_Model,6037,Variable +SercosDeviceType_DeviceManual,6038,Variable +SercosDeviceType_DeviceRevision,6039,Variable +SercosDeviceType_SoftwareRevision,6040,Variable +SercosDeviceType_HardwareRevision,6041,Variable +SercosDeviceType_DeviceClass,6042,Variable +SercosDeviceType_DeviceHealth,6043,Variable +SercosDeviceType_DeviceTypeImage,6044,Object +SercosDeviceType_DeviceTypeImage_ImageIdentifier,6045,Variable +SercosDeviceType_Documentation,6046,Object +SercosDeviceType_Documentation_DocumentIdentifier,6047,Variable +SercosDeviceType_ProtocolSupport,6048,Object +SercosDeviceType_ProtocolSupport_ProtocolSupportIdentifier,6049,Variable +SercosDeviceType_ImageSet,6050,Object +SercosDeviceType_ImageSet_ImageIdentifier,6051,Variable +SercosDeviceType_CPIdentifier,6052,Object +SercosDeviceType_CPIdentifier_ParameterSet,6053,Object +SercosDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,6054,Variable +SercosDeviceType_CPIdentifier_MethodSet,6055,Object +SercosDeviceType_CPIdentifier_MethodSet_MethodIdentifier,6056,Method +SercosDeviceType_CPIdentifier_Identification,6057,Object +SercosDeviceType_CPIdentifier_Identification_UIElement,6058,Variable +SercosDeviceType_CPIdentifier_Lock,6059,Object +SercosDeviceType_CPIdentifier_Lock_LockingClient,6061,Variable +SercosDeviceType_CPIdentifier_Lock_LockingUser,6062,Variable +SercosDeviceType_CPIdentifier_Lock_RemainingLockTime,6063,Variable +SercosDeviceType_CPIdentifier_Lock_InitLock,6064,Method +SercosDeviceType_CPIdentifier_Lock_InitLock_InputArguments,6065,Variable +SercosDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,6066,Variable +SercosDeviceType_CPIdentifier_Lock_RenewLock,6067,Method +SercosDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,6068,Variable +SercosDeviceType_CPIdentifier_Lock_ExitLock,6069,Method +SercosDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,6070,Variable +SercosDeviceType_CPIdentifier_Lock_BreakLock,6071,Method +SercosDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,6072,Variable +SercosDeviceType_CPIdentifier_NetworkAddress,6073,Object +SercosDeviceType_CPIdentifier_NetworkAddress_UIElement,6074,Variable +ProfileSet,6075,ObjectType +ProfileSet_SercosProfileIdentifier_Placeholder,6076,Object +ClassSet,6077,ObjectType +ClassSet_SercosClassIdentifier_Placeholder,6078,Object +FunctionGroupSet,6079,ObjectType +FunctionGroupSet_FunctionGroupIdentifier_Placeholder,6080,Object +SercosNamespaceMetadata,6081,Object +SercosNamespaceMetadata_NamespaceUri,6082,Variable +SercosNamespaceMetadata_NamespaceVersion,6083,Variable +SercosNamespaceMetadata_NamespacePublicationDate,6084,Variable +SercosNamespaceMetadata_IsNamespaceSubset,6085,Variable +SercosNamespaceMetadata_StaticNodeIdTypes,6086,Variable +SercosNamespaceMetadata_StaticNumericNodeIdRange,6087,Variable +SercosNamespaceMetadata_StaticStringNodeIdPattern,6088,Variable +SercosNamespaceMetadata_NamespaceFile,6089,Object +SercosNamespaceMetadata_NamespaceFile_Size,6090,Variable +SercosNamespaceMetadata_NamespaceFile_Writable,6091,Variable +SercosNamespaceMetadata_NamespaceFile_UserWritable,6092,Variable +SercosNamespaceMetadata_NamespaceFile_OpenCount,6093,Variable +SercosNamespaceMetadata_NamespaceFile_MimeType,6094,Variable +SercosNamespaceMetadata_NamespaceFile_Open,6095,Method +SercosNamespaceMetadata_NamespaceFile_Open_InputArguments,6096,Variable +SercosNamespaceMetadata_NamespaceFile_Open_OutputArguments,6097,Variable +SercosNamespaceMetadata_NamespaceFile_Close,6098,Method +SercosNamespaceMetadata_NamespaceFile_Close_InputArguments,6099,Variable +SercosNamespaceMetadata_NamespaceFile_Read,6100,Method +SercosNamespaceMetadata_NamespaceFile_Read_InputArguments,6101,Variable +SercosNamespaceMetadata_NamespaceFile_Read_OutputArguments,6102,Variable +SercosNamespaceMetadata_NamespaceFile_Write,6103,Method +SercosNamespaceMetadata_NamespaceFile_Write_InputArguments,6104,Variable +SercosNamespaceMetadata_NamespaceFile_GetPosition,6105,Method +SercosNamespaceMetadata_NamespaceFile_GetPosition_InputArguments,6106,Variable +SercosNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,6107,Variable +SercosNamespaceMetadata_NamespaceFile_SetPosition,6108,Method +SercosNamespaceMetadata_NamespaceFile_SetPosition_InputArguments,6109,Variable +SercosNamespaceMetadata_NamespaceFile_ExportNamespace,6110,Method +SercosNamespaceMetadata_DefaultRolePermissions,6111,Variable +SercosNamespaceMetadata_DefaultUserRolePermissions,6112,Variable +SercosNamespaceMetadata_DefaultAccessRestrictions,6113,Variable +SercosDeviceType_Lock_Locked,15007,Variable +SercosDeviceType_CPIdentifier_Lock_Locked,15008,Variable diff --git a/ModelCompiler/Design.v103/SercosModel.xml b/ModelCompiler/Design.v103/SercosModel.xml new file mode 100644 index 00000000..c8b8ac18 --- /dev/null +++ b/ModelCompiler/Design.v103/SercosModel.xml @@ -0,0 +1,143 @@ + + + + + http://sercos.org/UA/ + http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/ + + + + + http://sercos.org/UA/ + + + + http://sercos.org/UA/ + + + + + 1.00 + + + + + 2017-03-13 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + ua:Organizes + ua:Server_Namespaces + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <SercosProfileIdentifier> + + + + + + + + + <SercosClassIdentifier> + + + + + + + + + <FunctionGroupIdentifier> + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ModelCompiler/Design.v103/StandardTypes.xml b/ModelCompiler/Design.v103/StandardTypes.xml index e47597ca..cac7178b 100644 --- a/ModelCompiler/Design.v103/StandardTypes.xml +++ b/ModelCompiler/Design.v103/StandardTypes.xml @@ -1000,7 +1000,7 @@ - 2016-04-15 + 2016-04-15 diff --git a/ModelCompiler/Design.v103/UA Defined Types.xml b/ModelCompiler/Design.v103/UA Defined Types.xml index 8196c791..beee304a 100644 --- a/ModelCompiler/Design.v103/UA Defined Types.xml +++ b/ModelCompiler/Design.v103/UA Defined Types.xml @@ -1,5 +1,5 @@  - + http://opcfoundation.org/UA/ @@ -1297,7 +1297,7 @@ - 2016-04-15 + 2016-04-15 @@ -3095,413 +3095,197 @@ Retrieve the variance for the interval as calculated by the StandardDeviationPopulation which includes Simple Bounding Values. - The type of identifier used in a node id. - - The identifier is a numeric value. 0 is a null value. - - - The identifier is a string value. An empty string is a null value. - - - The identifier is a 16 byte structure. 16 zero bytes is a null value. - - - The identifier is an array of bytes. A zero length array is a null value. - + + + + - A mask specifying the class of the node. - - No classes are selected. - - - The node is an object. - - - The node is a variable. - - - The node is a method. - - - The node is an object type. - - - The node is an variable type. - - - The node is a reference type. - - - The node is a data type. - - - The node is a view. - + + + + + + + + + - - Specifies the attributes which belong to all nodes. + - - A unique identifier for the node. - - - The class of the node. - - - The browse name of the node. - - - The display name of the node. - - - The description of the node. - - - A mask indicating which attributes are writable. - - - A mask indicating which attributes are writable by the current user. - - - The references that belong to the node. - + + + + + + + + - - - - Specifies the attributes which belong to object nodes. + + + - - A mask indicating whether events are produced by the object. - + - - Specifies the attributes which belong to object type nodes. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - Specifies the attributes which belong to variable nodes. + - - The current value. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - A bit mask specifying how the value may be accessed. - - - A bit mask specifying how the value may be accessed by the current user. - - - The minimum possible sampling interval for the value. - - - TRUE if the server is current storing the history of the value. - + + + + + + + + - - Specifies the attributes which belong to variable type nodes. + - - The default value when creating new instances. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + + + + + - - Specifies the attributes which belong to reference type nodes. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - - - If TRUE the reference type has the same semantics in both directions. - - - The display name for the reference when following it from target to source. - + + + - - Specifies the attributes which belong to method nodes. + - - If TRUE the method can be called. - - - If TRUE the method can be called by the current user. - + + - + - - If TRUE the view contains a tree of non-looping hierarchical references. - - - A mask indicating whether events are produced by the view. - + + - + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - Specifies a reference which belongs to a node. + - - The node id of the reference type for the reference. - - - The reference is an inverse reference. - - - The node id for the target of the reference. - + + + - An argument for a method. - - The name of the argument. - - - The data type of the argument. - - - Whether the argument is an array type and the rank of the array if it is. - - - The number of dimensions if the argument is an array type and one or more dimensions have a fixed length. - - - The description for the argument. - + + + + + - A mapping between a value of an enumerated type and a name and description. - - The value of the enumeration. - - - Human readable name for the value. - - - A description of the value. - + + + - This abstract Structured DataType is the base DataType for all DataTypes representing a bit mask. - - Array of bytes representing the bits in the option set. - - - Array of bytes with same size as value representing the valid bits in the value parameter. - + + - - This abstract DataType is the base DataType for all union DataTypes. - - - A string normalized based on the rules in the unicode specification. - - - An arbitraty numeric value. - - - A period of time formatted as defined in ISO 8601-2000. - - - A time formatted as defined in ISO 8601-2000. - - - A date formatted as defined in ISO 8601-2000. - - - A period of time measured in milliseconds. - - - A date/time value specified in Universal Coordinated Time (UTC). - - - An identifier for a user locale. - + + + + + + + + + - - A numeric identifier for an object. - + - The types of applications. - - The application is a server. - - - The application is a client. - - - The application is a client and a server. - - - The application is a discovery server. - + + + + - Describes an application and how to find it. - - The globally unique identifier for the application. - - - The globally unique identifier for the product. - - - The name of application. - - - The type of application. - - - The globally unique identifier for the server that is acting as a gateway for the server. - - - The globally unique identifier for the discovery profile supported by the server. - - - The URLs for the server's discovery endpoints. - + + + + + + + - - The header passed with every server request. + - - The authentication token for the current session. - - - When the request was sent by the client. - - - A handle assigned by the client to the request. It is returned in the response. - - - A mask indicating what diagnostic information should be returned in the response. - - - Identifies an entry in the client audit log. - - - The timeout for the operation specified by the client. - - - Allows vendor specific information to be included in the header. - + + + + + + + - - The header passed with every server response. + - - When the response was sent by the server. - - - The handle passed by the client in the request. - - - The result of the operation. If Bad there are no parameters returned. - - - The diagnostics associated with the ServiceResult. - - - A table of strings referenced by the diagnotics structures included in the request. - - - Allows vendor specific information to be included in the header. - + + + + + + - - The response returned by all services when there is a service level error. + - - A standard header included in all responses returned by servers. - + - - Finds the servers known to the discovery server. + - - A standard header included in all requests sent to a server. - - - The URL used by the client to send the request. - - - The locales to use when constructing a response. - - - The URIs of the servers to return (all servers returned if none specified). - + + + + - - Finds the servers known to the discovery server. + - - A standard header included in all responses returned by servers. - - - The servers that met the criteria specified in the request. - + + @@ -3512,7 +3296,7 @@ - + @@ -3520,197 +3304,103 @@ - + - - A certificate for an instance of an application. - + - The type of security to use on a message. - - An invalid mode. - - - No security is used. - - - The message is signed. - - - The message is signed and encrypted. - + + + + - The possible user token types. - - An anonymous user. - - - A user identified by a user name and password. - - - A user identified by an X509 certificate. - - - A user identified by WS-Security XML token. - + + + + - Describes a user token that can be used with a server. - - A identifier for the policy assigned by the server. - - - The type of user token. - - - The type of issued token. - - - The endpoint or any other information need to contruct an issued token URL. - - - The security policy to use when encrypting or signing the user token. - + + + + + - The description of a endpoint that can be used to access a server. - - The network endpoint to use when connecting to the server. - - - The description of the server. - - - The server's application certificate. - - - The security mode that must be used when connecting to the endpoint. - - - The security policy to use when connecting to the endpoint. - - - The user identity tokens that can be used with this endpoint. - - - The transport profile to use when connecting to the endpoint. - - - A server assigned value that indicates how secure the endpoint is relative to other server endpoints. - + + + + + + + + - - Gets the endpoints used by the server. + - - A standard header included in all requests sent to a server. - - - The URL used by the client to send the request. - - - The locales to use when constructing a response. - - - The URIs of the transport profiles for the endpoints to return (all endpoints returned if none specified). - + + + + - - Gets the endpoints used by the server. + - - A standard header included in all responses returned by servers. - - - The endpoints that met the criteria specified in the request. - + + - The information required to register a server with a discovery server. - - The globally unique identifier for the server. - - - The globally unique identifier for the product. - - - The name of server in multiple lcoales. - - - The type of server. - - - The globally unique identifier for the server that is acting as a gateway for the server. - - - The URLs for the server's discovery endpoints. - - - A path to a file that is deleted when the server is no longer accepting connections. - - - If FALSE the server will save the registration information to a persistent datastore. - + + + + + + + + - - Registers a server with the discovery server. + - - A standard header included in all requests sent to a server. - - - The server to register. - + + - - Registers a server with the discovery server. + - - A standard header included in all responses returned by servers. - + - - A base type for discovery configuration information. - + - The discovery information needed for mDNS registration. - - The name for server that is broadcast via mDNS. - - - The server capabilities that are broadcast via mDNS. - + + - + - + @@ -3718,1126 +3408,531 @@ - Indicates whether a token if being created or renewed. - - The channel is being created. - - - The channel is being renewed. - + + - - The token that identifies a set of keys for an active secure channel. + - - A unique identifier for the channel. - - - A unique identifier for the current token. - - - When the channel was created. - - - When the channel will expiry. - + + + + - - Creates a secure channel with a server. + - - A standard header included in all requests sent to a server. - - - The version of protocol used by the client. - - - Whether the channel is being created or renewed. - - - The security mode to use with the channel. - - - A random number generated by the client. - - - The channel lifetime in milliseconds. - + + + + + + - - Creates a secure channel with a server. + - - A standard header included in all responses returned by servers. - - - The version of protocol used by the server. - - - The token that identifies the new secure channel. - - - A random number generated by the server. - + + + + - - Closes a secure channel. + - - A standard header included in all requests sent to a server. - + - - Closes a secure channel. + - - A standard header included in all responses returned by servers. - + - A software certificate with a digital signature. - - The data of the certificate. - - - The digital signature. - + + - - A unique identifier for a session used to authenticate requests. - - - A digital signature. + + - - The cryptography algorithm used to create the signature. - - - The signature. - + + - - Creates a new session with the server. + - - A standard header included in all requests sent to a server. - - - Describes the client application. - - - The URI of the server that the client wants to create a session with. - - - The URL that the client used to connect to the server. - - - A name for the session provided by the client. - - - A random number generated by the client. - - - The application certificate for the client. - - - The requested session timeout in milliseconds. - - - The maximum message size accepted by the client. - + + + + + + + + + - - Creates a new session with the server. + - - A standard header included in all responses returned by servers. - - - A identifier which uniquely identifies the session. - - - The token used to authenticate the client in subsequent requests. - - - The session timeout in milliseconds. - - - A random number generated by the server. - - - The application certificate for the server. - - - The endpoints provided by the server. - - - The software certificates owned by the server. - - - A signature created with the server certificate. - - - The maximum message size accepted by the server. - + + + + + + + + + + - A base type for a user identity token. - - The policy id specified in a user token policy for the endpoint being used. - + - - A token representing an anonymous user. - + - A token representing a user identified by a user name and password. - - The user name. - - - The password encrypted with the server certificate. - - - The algorithm used to encrypt the password. - + + + - A token representing a user identified by an X509 certificate. - - The certificate. - + - A token representing a user identified by a WS-Security XML token. - - The XML token encrypted with the server certificate. - - - The algorithm used to encrypt the certificate. - + + - - Activates a session with the server. + - - A standard header included in all requests sent to a server. - - - A signature created with the client certificate from the last server nonce returned by the server. - - - The software certificates owned by the client. - - - The locales to use with the session. - - - The user identity to use with the session. - - - A digital signature created with the user identity token. - + + + + + + - - Activates a session with the server. + - - A standard header included in all responses returned by servers. - - - A random number generated by the server. - - - Any errors during validation of the software certificates. - - - The diagnostics associated with the software certificates results. - + + + + - - Closes a session with the server. + - - A standard header included in all requests sent to a server. - - - If TRUE all subscriptions are deleted when the session is closed. - + + - - Closes a session with the server. + - - A standard header included in all responses returned by servers. - + - - Cancels an outstanding request. + - - A standard header included in all requests sent to a server. - - - The handle assigned by the client to the requests being cancelled. - + + - - Cancels an outstanding request. + - - A standard header included in all responses returned by servers. - - - The number of requests successfully cancelled. - + + - The bits used to specify default attributes for a new node. - - - No attribuites provided. - - - The access level attribute is specified. - - - The array dimensions attribute is specified. - - - The browse name attribute is specified. - - - The contains no loops attribute is specified. - - - The data type attribute is specified. - - - The description attribute is specified. - - - The display name attribute is specified. - - - The event notifier attribute is specified. - - - The executable attribute is specified. - - - The historizing attribute is specified. - - - The inverse name attribute is specified. - - - The is abstract attribute is specified. - - - The minimum sampling interval attribute is specified. - - - The node class attribute is specified. - - - The node id attribute is specified. - - - The symmetric attribute is specified. - - - The user access level attribute is specified. - - - The user executable attribute is specified. - - - The user write mask attribute is specified. - - - The value rank attribute is specified. - - - The write mask attribute is specified. - - - The value attribute is specified. - - - All attributes are specified. - - - All base attributes are specified. - - - All object attributes are specified. - - - All object type or data type attributes are specified. - - - All variable attributes are specified. - - - All variable type attributes are specified. - - - All method attributes are specified. - - - All reference type attributes are specified. - - - All view attributes are specified. - - - - - The base attributes for all nodes. - - A mask indicating which attributes have been provided. - - - A human readable name for the node. - - - A description for the node. - - - A mask which specifies which attributes are writable. - - - A mask which specifies which attributes are writable by the current user. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - The attributes for an object node. + - - A mask indicating what events are produced by the object. - + - - The attributes for a variable node. + - - The value of the variable. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - A bit mask specifying how the value may be accessed. - - - A bit mask specifying how the value may be accessed by the current user. - - - The minimum possible sampling interval for the value. - - - TRUE if the server is current storing the history of the value. - + + + + + + + + - - The attributes for a method node. + - - If TRUE the method can be called. - - - If TRUE the method can be called by the current user. - + + - - The attributes for an object type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - The attributes for a variable type node. + - - The default value when creating new instances. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + + + + + - - The attributes for a reference type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - - - If TRUE the reference type has the same semantics in both directions. - - - The display name for the reference when following it from target to source. - + + + - - The attributes for a data type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - The attributes for a view node. + - - If TRUE the view contains a tree of non-looping hierarchical references. - - - A mask indicating whether events are produced by the view. - + + - A request to add a node to the server address space. - - The node id for the parent node. - - - The type of reference from the parent to the new node. - - - The node id requested by the client. If null the server must provide one. - - - The browse name for the new node. - - - The class of the new node. - - - The default attributes for the new node. - - - The type definition for the new node. - + + + + + + + - - A result of an add node operation. + - - A code indicating any error during the operation. - - - The id of the new node. - + + - - Adds one or more nodes to the server address space. + - - A standard header included in all requests sent to a server. - - - The list of nodes to add. - + + - - Adds one or more nodes to the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the add node operations. - - - The diagnostics associated with the results returned. - + + + - A request to add a reference to the server address space. - - The source of the reference. - - - The type of reference. - - - If TRUE the reference is a forward reference. - - - The URI of the server containing the target (if in another server). - - - The target of the reference. - - - The node class of the target (if known). - + + + + + + - - Adds one or more references to the server address space. + - - A standard header included in all requests sent to a server. - - - The list of references to add. - + + - - Adds one or more references to the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the add reference operations. - - - The diagnostics associated with the results returned. - + + + - A request to delete a node to the server address space. - - The id of the node to delete. - - - If TRUE all references to the are deleted as well. - + + - - Delete one or more nodes from the server address space. + - - A standard header included in all requests sent to a server. - - - The list of nodes to delete. - + + - - Delete one or more nodes from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the delete nodes operations. - - - The diagnostics associated with the results returned. - + + + - A request to delete a node from the server address space. - - The source of the reference to delete. - - - The type of reference to delete. - - - If TRUE the a forward reference is deleted. - - - The target of the reference to delete. - - - If TRUE the reference is deleted in both directions. - + + + + + - - Delete one or more references from the server address space. + - - A standard header included in all requests sent to a server. - - - The list of references to delete. - + + - - Delete one or more references from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the delete reference operations. - - - The diagnostics associated with the results returned. - + + + - Define bits used to indicate which attributes are writable. - - No attributes are writable. - - - The access level attribute is writable. - - - The array dimensions attribute is writable. - - - The browse name attribute is writable. - - - The contains no loops attribute is writable. - - - The data type attribute is writable. - - - The description attribute is writable. - - - The display name attribute is writable. - - - The event notifier attribute is writable. - - - The executable attribute is writable. - - - The historizing attribute is writable. - - - The inverse name attribute is writable. - - - The is abstract attribute is writable. - - - The minimum sampling interval attribute is writable. - - - The node class attribute is writable. - - - The node id attribute is writable. - - - The symmetric attribute is writable. - - - The user access level attribute is writable. - - - The user executable attribute is writable. - - - The user write mask attribute is writable. - - - The value rank attribute is writable. - - - The write mask attribute is writable. - - - The value attribute is writable. - - - - - The directions of the references to return. - - - Return forward references. - - - Return inverse references. - - - Return forward and inverse references. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - The view to browse. + - - The node id of the view. - - - Browses the view at or before this time. - - - Browses a specific version of the view . - + + + - - A request to browse the the references from a node. + - - The id of the node to browse. - - - The direction of the references to return. - - - The type of references to return. - - - Includes subtypes of the reference type. - - - A mask indicating which node classes to return. 0 means return all nodes. - - - A mask indicating which fields should be returned in the results. - + + + + + + - - A bit mask which specifies what should be returned in a browse response. + - - Return only the node id. - - - Return the reference type id. - - - Return the flag indicating whether the reference is a forward reference. - - - Return the node class. - - - Return the browse name. - - - Return the display name. - - - Return the type definition. - - - Return all fields. - - - Return the reference type information. - - - Return the information about the target node. - + + + + + + + + + + - - The description of a reference. + - - The type of references. - - - TRUE if the reference is a forward reference. - - - The id of the target node. - - - The browse name of the target node. - - - The display name of the target node. - - - The node class of the target node. - - - The type definition of the target node. - + + + + + + + - - An identifier for a suspended query or browse operation. - - - The result of a browse operation. + + - - A code indicating any error during the operation. - - - A value that indicates the operation is incomplete and can be continued by calling BrowseNext. - - - A list of references that meet the criteria specified in the request. - + + + - - Browse the references for one or more nodes from the server address space. + - - A standard header included in all requests sent to a server. - - - The view to browse. - - - The maximum number of references to return in the response. - - - The list of nodes to browse. - + + + + - - Browse the references for one or more nodes from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the browse operations. - - - The diagnostics associated with the results. - + + + - - Continues one or more browse operations. + - - A standard header included in all requests sent to a server. - - - If TRUE the continuation points are released and no results are returned. - - - The contination points returned from a previous call to Browse and BrowseNext. - + + + - - Continues one or more browse operations. + - - A standard header included in all responses returned by servers. - - - The results for the browse operations. - - - The diagnostics associated with the results. - + + + - An element in a relative path. - - The type of reference to follow. - - - If TRUE the reverse reference is followed. - - - If TRUE then subtypes of the reference type are followed. - - - The browse name of the target. - + + + + - A relative path constructed from reference types and browse names. - - A list of elements in the path. - + - - A request to translate a path into a node id. + - - The starting point for the search. - - - The path to follow. - + + - - The target of the translated path. + - - The id of the target node. - - - The index of the target in the relative path. UInt32.MaxValue if the entire path was processed. - + + - - The result of a translate opearation. + - - A code indicating any error during the operation. - - - A list of nodes found. The first element matches the type definition. - + + - - Translates one or more paths in the server address space. + - - A standard header included in all requests sent to a server. - - - The list of paths to translate. - + + - - Translates one or more paths in the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the translate operations. - - - The diagnostics associated with the results. - + + + - - Registers one or more nodes for repeated use within a session. + - - A standard header included in all requests sent to a server. - - - The list of nodes to register. - + + - - Registers one or more nodes for repeated use within a session. + - - A standard header included in all responses returned by servers. - - - The list of node ids that can be used for fast access to the nodes. - + + - - Unregisters one or more previously registered nodes. + - - A standard header included in all requests sent to a server. - - - The list of nodes to unregister. - + + - - Unregisters one or more previously registered nodes. + - - A standard header included in all responses returned by servers. - + - - A monotonically increasing value. - - - Specifies a range of array indexes. - - - A time value specified as HH:MM:SS.SSS. - - - A date value. - + + + + @@ -4851,14 +3946,14 @@ - + - + @@ -4887,14 +3982,14 @@ - + - + @@ -4941,27 +4036,27 @@ - + - + - + - + @@ -4971,7 +4066,7 @@ - + @@ -4981,21 +4076,21 @@ - + - + - + @@ -5004,7 +4099,7 @@ - + @@ -5012,7 +4107,7 @@ - + @@ -5020,14 +4115,14 @@ - + - + @@ -5035,15 +4130,15 @@ - + - - + + @@ -5051,7 +4146,7 @@ - + @@ -5060,7 +4155,7 @@ - + @@ -5069,25 +4164,25 @@ - + - + - + - + @@ -5097,7 +4192,7 @@ - + @@ -5106,14 +4201,14 @@ - + - + @@ -5121,20 +4216,20 @@ - + - + - + @@ -5155,70 +4250,70 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -5226,34 +4321,34 @@ - + - + - + - + - + @@ -5261,7 +4356,7 @@ - + @@ -5283,7 +4378,7 @@ - + @@ -5291,22 +4386,22 @@ - - + + - + - + @@ -5315,14 +4410,14 @@ - + - + @@ -5331,7 +4426,7 @@ - + @@ -5339,20 +4434,20 @@ - + - + - + @@ -5360,7 +4455,7 @@ - + @@ -5368,14 +4463,14 @@ - + - + @@ -5383,14 +4478,14 @@ - + - + @@ -5399,7 +4494,7 @@ - + @@ -5408,21 +4503,21 @@ - + - + - + @@ -5433,7 +4528,7 @@ - + @@ -5442,7 +4537,7 @@ - + @@ -5453,7 +4548,7 @@ - + @@ -5461,46 +4556,46 @@ - + - + - + - - + + - + - + - + @@ -5511,25 +4606,25 @@ - + - + - + - + @@ -5540,46 +4635,46 @@ - + - + - + - + - + - + - + @@ -5777,7 +4872,7 @@ - + diff --git a/ModelCompiler/Design.v104/BuiltInTypes.xml b/ModelCompiler/Design.v104/BuiltInTypes.xml index 9906f574..6d206163 100644 --- a/ModelCompiler/Design.v104/BuiltInTypes.xml +++ b/ModelCompiler/Design.v104/BuiltInTypes.xml @@ -8,7 +8,7 @@ xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" TargetNamespace="http://opcfoundation.org/UA/" TargetVersion="1.04" - TargetPublicationDate="2018-02-09T00:00:00Z" + TargetPublicationDate="2019-04-15T00:00:00Z" > http://opcfoundation.org/UA/ diff --git a/ModelCompiler/Design.v104/MDIS.csv b/ModelCompiler/Design.v104/MDIS.csv new file mode 100644 index 00000000..b6ea6057 --- /dev/null +++ b/ModelCompiler/Design.v104/MDIS.csv @@ -0,0 +1,395 @@ +CommandEnum,3,DataType +SEMEnum,5,DataType +SEMEnum_EnumValues,6,Variable +MoveType,190,Method +MoveType_InputArguments,191,Variable +EnableDisableType,192,Method +EnableDisableType_InputArguments,193,Variable +MDISBaseObjectType,194,ObjectType +MDISBaseObjectType_EnableDisable,195,Method +MDISBaseObjectType_EnableDisable_InputArguments,196,Variable +MDISBaseObjectType_TagId,197,Variable +MDIS_XmlSchema,367,Variable +MDIS_XmlSchema_DataTypeVersion,368,Variable +MDIS_XmlSchema_NamespaceUri,369,Variable +MDIS_BinarySchema,374,Variable +MDIS_BinarySchema_DataTypeVersion,375,Variable +MDIS_BinarySchema_NamespaceUri,376,Variable +MDISBaseObjectType_Enabled,476,Variable +MDISBaseObjectType_Fault,489,Variable +MDISBaseObjectType_Warning,497,Variable +ChokeMoveType,498,Method +ChokeMoveType_InputArguments,499,Variable +ChokeStepType,500,Method +ChokeStepType_InputArguments,501,Variable +ChokeAbortType,502,Method +ChokeMoveEnum,602,DataType +ChokeMoveEnum_EnumValues,603,Variable +CommandEnum_EnumValues,616,Variable +SignatureStatusEnum,699,DataType +SignatureStatusEnum_EnumValues,700,Variable +ChokeCommandEnum,701,DataType +ChokeCommandEnum_EnumValues,702,Variable +ValvePositionEnum,703,DataType +ValvePositionEnum_EnumValues,704,Variable +MDISValveObjectType,794,ObjectType +MDISValveObjectType_Fault,795,Variable +MDISValveObjectType_Warning,796,Variable +MDISValveObjectType_Enabled,797,Variable +MDISValveObjectType_EnableDisable,798,Method +MDISValveObjectType_EnableDisable_InputArguments,799,Variable +MDISValveObjectType_TagId,800,Variable +MDISValveObjectType_Position,875,Variable +MDISValveObjectType_CommandRejected,876,Variable +MDISValveObjectType_SignatureRequestStatus,877,Variable +MDISValveObjectType_LastCommand,878,Variable +MDISValveObjectType_NonDefeatableOpenInterlock,879,Variable +MDISValveObjectType_DefeatableOpenInterlock,880,Variable +MDISValveObjectType_NonDefeatableCloseInterlock,881,Variable +MDISValveObjectType_DefeatableCloseInterlock,882,Variable +MDISValveObjectType_Move,883,Method +MDISValveObjectType_Move_InputArguments,884,Variable +MDISValveObjectType_OpenTimeDuration,887,Variable +MDISValveObjectType_CloseTimeDuration,888,Variable +MDISDigitalInstrumentObjectType,889,ObjectType +MDISDigitalInstrumentObjectType_Fault,890,Variable +MDISDigitalInstrumentObjectType_Warning,891,Variable +MDISDigitalInstrumentObjectType_Enabled,892,Variable +MDISDigitalInstrumentObjectType_EnableDisable,893,Method +MDISDigitalInstrumentObjectType_EnableDisable_InputArguments,894,Variable +MDISDigitalInstrumentObjectType_TagId,895,Variable +MDISDigitalInstrumentObjectType_State,970,Variable +MDISInstrumentObjectType,971,ObjectType +MDISInstrumentObjectType_Fault,972,Variable +MDISInstrumentObjectType_Warning,973,Variable +MDISInstrumentObjectType_Enabled,974,Variable +MDISInstrumentObjectType_EnableDisable,975,Method +MDISInstrumentObjectType_EnableDisable_InputArguments,976,Variable +MDISInstrumentObjectType_TagId,977,Variable +MDISInstrumentObjectType_ProcessVariable,1052,Variable +MDISInstrumentObjectType_ProcessVariable_Definition,1053,Variable +MDISInstrumentObjectType_ProcessVariable_ValuePrecision,1054,Variable +MDISInstrumentObjectType_ProcessVariable_InstrumentRange,1055,Variable +MDISInstrumentObjectType_ProcessVariable_EURange,1056,Variable +MDISInstrumentObjectType_ProcessVariable_EngineeringUnits,1057,Variable +MDISInstrumentObjectType_HHlimit,1058,Variable +MDISInstrumentObjectType_Hlimit,1059,Variable +MDISInstrumentObjectType_Llimit,1060,Variable +MDISInstrumentObjectType_LLlimit,1061,Variable +MDISInstrumentObjectType_HHSetPoint,1062,Variable +MDISInstrumentObjectType_HSetPoint,1063,Variable +MDISInstrumentObjectType_LSetPoint,1064,Variable +MDISInstrumentObjectType_LLSetPoint,1065,Variable +MDISChokeObjectType,1066,ObjectType +MDISChokeObjectType_Fault,1067,Variable +MDISChokeObjectType_Warning,1068,Variable +MDISChokeObjectType_Enabled,1069,Variable +MDISChokeObjectType_EnableDisable,1070,Method +MDISChokeObjectType_EnableDisable_InputArguments,1071,Variable +MDISChokeObjectType_TagId,1072,Variable +MDISChokeObjectType_CalculatedPosition,1147,Variable +MDISChokeObjectType_PositionInSteps,1148,Variable +MDISChokeObjectType_Moving,1149,Variable +MDISChokeObjectType_CommandRejected,1150,Variable +MDISChokeObjectType_NonDefeatableOpenInterlock,1151,Variable +MDISChokeObjectType_DefeatableOpenInterlock,1152,Variable +MDISChokeObjectType_NonDefeatableCloseInterlock,1153,Variable +MDISChokeObjectType_DefeatableCloseInterlock,1154,Variable +MDISChokeObjectType_Move,1155,Method +MDISChokeObjectType_Move_InputArguments,1156,Variable +MDISChokeObjectType_Step,1157,Method +MDISChokeObjectType_Step_InputArguments,1158,Variable +MDISChokeObjectType_Abort,1159,Method +MDISChokeObjectType_StepDurationOpen,1162,Variable +MDISChokeObjectType_StepDurationClose,1163,Variable +MDISChokeObjectType_TotalSteps,1164,Variable +MDISBaseObjectType_FaultCode,1165,Variable +MDISBaseObjectType_WarningCode,1166,Variable +MDISValveObjectType_FaultCode,1173,Variable +MDISValveObjectType_WarningCode,1174,Variable +MDISDigitalInstrumentObjectType_FaultCode,1176,Variable +MDISDigitalInstrumentObjectType_WarningCode,1177,Variable +MDISInstrumentObjectType_FaultCode,1178,Variable +MDISInstrumentObjectType_WarningCode,1179,Variable +MDISChokeObjectType_FaultCode,1180,Variable +MDISChokeObjectType_WarningCode,1181,Variable +HasInterlock,1183,ReferenceType +InterlockFor,1184,ReferenceType +MDISDiscreteInstrumentObjectType,1214,ObjectType +MDISDiscreteInstrumentObjectType_Fault,1215,Variable +MDISDiscreteInstrumentObjectType_FaultCode,1216,Variable +MDISDiscreteInstrumentObjectType_Warning,1217,Variable +MDISDiscreteInstrumentObjectType_WarningCode,1218,Variable +MDISDiscreteInstrumentObjectType_Enabled,1219,Variable +MDISDiscreteInstrumentObjectType_EnableDisable,1220,Method +MDISDiscreteInstrumentObjectType_EnableDisable_InputArguments,1221,Variable +MDISDiscreteInstrumentObjectType_TagId,1222,Variable +MDISDiscreteInstrumentObjectType_State,1223,Variable +WriteStateType,1224,Method +WriteStateType_InputArguments,1225,Variable +WriteValueType,1226,Method +WriteValueType_InputArguments,1227,Variable +WriteInstrumentValueType,1228,Method +WriteInstrumentValueType_InputArguments,1229,Variable +MDISDigitalOutObjectType,1230,ObjectType +MDISDigitalOutObjectType_Fault,1231,Variable +MDISDigitalOutObjectType_FaultCode,1232,Variable +MDISDigitalOutObjectType_Warning,1233,Variable +MDISDigitalOutObjectType_WarningCode,1234,Variable +MDISDigitalOutObjectType_Enabled,1235,Variable +MDISDigitalOutObjectType_EnableDisable,1236,Method +MDISDigitalOutObjectType_EnableDisable_InputArguments,1237,Variable +MDISDigitalOutObjectType_TagId,1238,Variable +MDISDigitalOutObjectType_State,1239,Variable +MDISDigitalOutObjectType_WriteState,1240,Method +MDISDigitalOutObjectType_WriteState_InputArguments,1241,Variable +MDISDiscreteOutObjectType,1242,ObjectType +MDISDiscreteOutObjectType_Fault,1243,Variable +MDISDiscreteOutObjectType_FaultCode,1244,Variable +MDISDiscreteOutObjectType_Warning,1245,Variable +MDISDiscreteOutObjectType_WarningCode,1246,Variable +MDISDiscreteOutObjectType_Enabled,1247,Variable +MDISDiscreteOutObjectType_EnableDisable,1248,Method +MDISDiscreteOutObjectType_EnableDisable_InputArguments,1249,Variable +MDISDiscreteOutObjectType_TagId,1250,Variable +MDISDiscreteOutObjectType_State,1251,Variable +MDISDiscreteOutObjectType_WriteValue,1252,Method +MDISDiscreteOutObjectType_WriteValue_InputArguments,1253,Variable +MDISInstrumentOutObjectType,1254,ObjectType +MDISInstrumentOutObjectType_Fault,1255,Variable +MDISInstrumentOutObjectType_FaultCode,1256,Variable +MDISInstrumentOutObjectType_Warning,1257,Variable +MDISInstrumentOutObjectType_WarningCode,1258,Variable +MDISInstrumentOutObjectType_Enabled,1259,Variable +MDISInstrumentOutObjectType_EnableDisable,1260,Method +MDISInstrumentOutObjectType_EnableDisable_InputArguments,1261,Variable +MDISInstrumentOutObjectType_TagId,1262,Variable +MDISInstrumentOutObjectType_ProcessVariable,1263,Variable +MDISInstrumentOutObjectType_ProcessVariable_Definition,1264,Variable +MDISInstrumentOutObjectType_ProcessVariable_ValuePrecision,1265,Variable +MDISInstrumentOutObjectType_ProcessVariable_InstrumentRange,1266,Variable +MDISInstrumentOutObjectType_ProcessVariable_EURange,1267,Variable +MDISInstrumentOutObjectType_ProcessVariable_EngineeringUnits,1268,Variable +MDISInstrumentOutObjectType_HHlimit,1269,Variable +MDISInstrumentOutObjectType_Hlimit,1270,Variable +MDISInstrumentOutObjectType_Llimit,1271,Variable +MDISInstrumentOutObjectType_LLlimit,1272,Variable +MDISInstrumentOutObjectType_HHSetPoint,1273,Variable +MDISInstrumentOutObjectType_HSetPoint,1274,Variable +MDISInstrumentOutObjectType_LSetPoint,1275,Variable +MDISInstrumentOutObjectType_LLSetPoint,1276,Variable +MDISInstrumentOutObjectType_WriteValue,1277,Method +MDISInstrumentOutObjectType_WriteValue_InputArguments,1278,Variable +InterlockVariableType,1279,VariableType +MDISValveObjectType_InterlockPlaceholder,1280,Variable +MDISChokeObjectType_InterlockPlaceholder,1281,Variable +ChokeSetCalculatedPositionType,1282,Method +ChokeSetCalculatedPositionType_InputArguments,1283,Variable +MDISChokeObjectType_SetCalculatedPosition,1284,Method +MDISChokeObjectType_SetCalculatedPosition_InputArguments,1285,Variable +HasSignature,1286,ReferenceType +SetCalculatedPositionEnum,1287,DataType +SetCalculatedPositionEnum_EnumValues,1288,Variable +MDISVersionDataType,1289,DataType +MDISVersionVariableType,1290,VariableType +MDISVersionVariableType_MajorVersion,1291,Variable +MDISVersionVariableType_MinorVersion,1292,Variable +MDISVersionVariableType_Build,1293,Variable +MDISValveObjectType_ValveSignature,1294,Object +MDISValveObjectType_ValveSignature_Size,1295,Variable +MDISValveObjectType_ValveSignature_Writable,1296,Variable +MDISValveObjectType_ValveSignature_UserWritable,1297,Variable +MDISValveObjectType_ValveSignature_OpenCount,1298,Variable +MDISValveObjectType_ValveSignature_Open,1299,Method +MDISValveObjectType_ValveSignature_Open_InputArguments,1300,Variable +MDISValveObjectType_ValveSignature_Open_OutputArguments,1301,Variable +MDISValveObjectType_ValveSignature_Close,1302,Method +MDISValveObjectType_ValveSignature_Close_InputArguments,1303,Variable +MDISValveObjectType_ValveSignature_Read,1304,Method +MDISValveObjectType_ValveSignature_Read_InputArguments,1305,Variable +MDISValveObjectType_ValveSignature_Read_OutputArguments,1306,Variable +MDISValveObjectType_ValveSignature_Write,1307,Method +MDISValveObjectType_ValveSignature_Write_InputArguments,1308,Variable +MDISValveObjectType_ValveSignature_GetPosition,1309,Method +MDISValveObjectType_ValveSignature_GetPosition_InputArguments,1310,Variable +MDISValveObjectType_ValveSignature_GetPosition_OutputArguments,1311,Variable +MDISValveObjectType_ValveSignature_SetPosition,1312,Method +MDISValveObjectType_ValveSignature_SetPosition_InputArguments,1313,Variable +MDISChokeObjectType_SetCalculatedPositionStatus,1314,Variable +MDISAggregateObjectType,1315,ObjectType +MDISAggregateObjectType_Fault,1316,Variable +MDISAggregateObjectType_FaultCode,1317,Variable +MDISAggregateObjectType_Warning,1318,Variable +MDISAggregateObjectType_WarningCode,1319,Variable +MDISAggregateObjectType_Enabled,1320,Variable +MDISAggregateObjectType_EnableDisable,1321,Method +MDISAggregateObjectType_EnableDisable_InputArguments,1322,Variable +MDISAggregateObjectType_TagId,1323,Variable +MDISAggregateObjectType_InstrumentPlaceholder,1324,Object +MDISAggregateObjectType_InstrumentPlaceholder_Fault,1325,Variable +MDISAggregateObjectType_InstrumentPlaceholder_FaultCode,1326,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Warning,1327,Variable +MDISAggregateObjectType_InstrumentPlaceholder_WarningCode,1328,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Enabled,1329,Variable +MDISAggregateObjectType_InstrumentPlaceholder_EnableDisable,1330,Method +MDISAggregateObjectType_InstrumentPlaceholder_EnableDisable_InputArguments,1331,Variable +MDISAggregateObjectType_InstrumentPlaceholder_TagId,1332,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable,1333,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_Definition,1334,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_ValuePrecision,1335,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_InstrumentRange,1336,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_EURange,1337,Variable +MDISAggregateObjectType_InstrumentPlaceholder_ProcessVariable_EngineeringUnits,1338,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HHlimit,1339,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Hlimit,1340,Variable +MDISAggregateObjectType_InstrumentPlaceholder_Llimit,1341,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LLlimit,1342,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HHSetPoint,1343,Variable +MDISAggregateObjectType_InstrumentPlaceholder_HSetPoint,1344,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LSetPoint,1345,Variable +MDISAggregateObjectType_InstrumentPlaceholder_LLSetPoint,1346,Variable +MDISAggregateObjectType_DigitalPlaceholder,1347,Object +MDISAggregateObjectType_DigitalPlaceholder_Fault,1348,Variable +MDISAggregateObjectType_DigitalPlaceholder_FaultCode,1349,Variable +MDISAggregateObjectType_DigitalPlaceholder_Warning,1350,Variable +MDISAggregateObjectType_DigitalPlaceholder_WarningCode,1351,Variable +MDISAggregateObjectType_DigitalPlaceholder_Enabled,1352,Variable +MDISAggregateObjectType_DigitalPlaceholder_EnableDisable,1353,Method +MDISAggregateObjectType_DigitalPlaceholder_EnableDisable_InputArguments,1354,Variable +MDISAggregateObjectType_DigitalPlaceholder_TagId,1355,Variable +MDISAggregateObjectType_DigitalPlaceholder_State,1356,Variable +MDISAggregateObjectType_DiscretePlaceholder,1357,Object +MDISAggregateObjectType_DiscretePlaceholder_Fault,1358,Variable +MDISAggregateObjectType_DiscretePlaceholder_FaultCode,1359,Variable +MDISAggregateObjectType_DiscretePlaceholder_Warning,1360,Variable +MDISAggregateObjectType_DiscretePlaceholder_WarningCode,1361,Variable +MDISAggregateObjectType_DiscretePlaceholder_Enabled,1362,Variable +MDISAggregateObjectType_DiscretePlaceholder_EnableDisable,1363,Method +MDISAggregateObjectType_DiscretePlaceholder_EnableDisable_InputArguments,1364,Variable +MDISAggregateObjectType_DiscretePlaceholder_TagId,1365,Variable +MDISAggregateObjectType_DiscretePlaceholder_State,1366,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder,1367,Object +MDISAggregateObjectType_InstrumentOutPlaceholder_Fault,1368,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_FaultCode,1369,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Warning,1370,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_WarningCode,1371,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Enabled,1372,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_EnableDisable,1373,Method +MDISAggregateObjectType_InstrumentOutPlaceholder_EnableDisable_InputArguments,1374,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_TagId,1375,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable,1376,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_Definition,1377,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_ValuePrecision,1378,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_InstrumentRange,1379,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_EURange,1380,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_ProcessVariable_EngineeringUnits,1381,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HHlimit,1382,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Hlimit,1383,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_Llimit,1384,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LLlimit,1385,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HHSetPoint,1386,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_HSetPoint,1387,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LSetPoint,1388,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_LLSetPoint,1389,Variable +MDISAggregateObjectType_InstrumentOutPlaceholder_WriteValue,1390,Method +MDISAggregateObjectType_InstrumentOutPlaceholder_WriteValue_InputArguments,1391,Variable +MDISAggregateObjectType_DigitalOutPlaceholder,1392,Object +MDISAggregateObjectType_DigitalOutPlaceholder_Fault,1393,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_FaultCode,1394,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_Warning,1395,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_WarningCode,1396,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_Enabled,1397,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_EnableDisable,1398,Method +MDISAggregateObjectType_DigitalOutPlaceholder_EnableDisable_InputArguments,1399,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_TagId,1400,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_State,1401,Variable +MDISAggregateObjectType_DigitalOutPlaceholder_WriteState,1402,Method +MDISAggregateObjectType_DigitalOutPlaceholder_WriteState_InputArguments,1403,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder,1404,Object +MDISAggregateObjectType_DiscreteOutPlaceholder_Fault,1405,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_FaultCode,1406,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_Warning,1407,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_WarningCode,1408,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_Enabled,1409,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_EnableDisable,1410,Method +MDISAggregateObjectType_DiscreteOutPlaceholder_EnableDisable_InputArguments,1411,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_TagId,1412,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_State,1413,Variable +MDISAggregateObjectType_DiscreteOutPlaceholder_WriteValue,1414,Method +MDISAggregateObjectType_DiscreteOutPlaceholder_WriteValue_InputArguments,1415,Variable +MDISAggregateObjectType_ValvePlaceholder,1416,Object +MDISAggregateObjectType_ValvePlaceholder_Fault,1417,Variable +MDISAggregateObjectType_ValvePlaceholder_FaultCode,1418,Variable +MDISAggregateObjectType_ValvePlaceholder_Warning,1419,Variable +MDISAggregateObjectType_ValvePlaceholder_WarningCode,1420,Variable +MDISAggregateObjectType_ValvePlaceholder_Enabled,1421,Variable +MDISAggregateObjectType_ValvePlaceholder_EnableDisable,1422,Method +MDISAggregateObjectType_ValvePlaceholder_EnableDisable_InputArguments,1423,Variable +MDISAggregateObjectType_ValvePlaceholder_TagId,1424,Variable +MDISAggregateObjectType_ValvePlaceholder_Position,1425,Variable +MDISAggregateObjectType_ValvePlaceholder_CommandRejected,1426,Variable +MDISAggregateObjectType_ValvePlaceholder_SignatureRequestStatus,1427,Variable +MDISAggregateObjectType_ValvePlaceholder_LastCommand,1428,Variable +MDISAggregateObjectType_ValvePlaceholder_NonDefeatableOpenInterlock,1429,Variable +MDISAggregateObjectType_ValvePlaceholder_DefeatableOpenInterlock,1430,Variable +MDISAggregateObjectType_ValvePlaceholder_NonDefeatableCloseInterlock,1431,Variable +MDISAggregateObjectType_ValvePlaceholder_DefeatableCloseInterlock,1432,Variable +MDISAggregateObjectType_ValvePlaceholder_Move,1433,Method +MDISAggregateObjectType_ValvePlaceholder_Move_InputArguments,1434,Variable +MDISAggregateObjectType_ValvePlaceholder_OpenTimeDuration,1435,Variable +MDISAggregateObjectType_ValvePlaceholder_CloseTimeDuration,1436,Variable +MDISAggregateObjectType_ChokePlaceholder,1437,Object +MDISAggregateObjectType_ChokePlaceholder_Fault,1438,Variable +MDISAggregateObjectType_ChokePlaceholder_FaultCode,1439,Variable +MDISAggregateObjectType_ChokePlaceholder_Warning,1440,Variable +MDISAggregateObjectType_ChokePlaceholder_WarningCode,1441,Variable +MDISAggregateObjectType_ChokePlaceholder_Enabled,1442,Variable +MDISAggregateObjectType_ChokePlaceholder_EnableDisable,1443,Method +MDISAggregateObjectType_ChokePlaceholder_EnableDisable_InputArguments,1444,Variable +MDISAggregateObjectType_ChokePlaceholder_TagId,1445,Variable +MDISAggregateObjectType_ChokePlaceholder_CalculatedPosition,1446,Variable +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPositionStatus,1447,Variable +MDISAggregateObjectType_ChokePlaceholder_PositionInSteps,1448,Variable +MDISAggregateObjectType_ChokePlaceholder_Moving,1449,Variable +MDISAggregateObjectType_ChokePlaceholder_CommandRejected,1450,Variable +MDISAggregateObjectType_ChokePlaceholder_NonDefeatableOpenInterlock,1451,Variable +MDISAggregateObjectType_ChokePlaceholder_DefeatableOpenInterlock,1452,Variable +MDISAggregateObjectType_ChokePlaceholder_NonDefeatableCloseInterlock,1453,Variable +MDISAggregateObjectType_ChokePlaceholder_DefeatableCloseInterlock,1454,Variable +MDISAggregateObjectType_ChokePlaceholder_Move,1455,Method +MDISAggregateObjectType_ChokePlaceholder_Move_InputArguments,1456,Variable +MDISAggregateObjectType_ChokePlaceholder_Step,1457,Method +MDISAggregateObjectType_ChokePlaceholder_Step_InputArguments,1458,Variable +MDISAggregateObjectType_ChokePlaceholder_Abort,1459,Method +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPosition,1460,Method +MDISAggregateObjectType_ChokePlaceholder_SetCalculatedPosition_InputArguments,1461,Variable +MDISAggregateObjectType_ChokePlaceholder_StepDurationOpen,1462,Variable +MDISAggregateObjectType_ChokePlaceholder_StepDurationClose,1463,Variable +MDISAggregateObjectType_ChokePlaceholder_TotalSteps,1464,Variable +MDISAggregateObjectType_InterlockPlaceholder,1465,Variable +SetTimeType,1466,Method +SetTimeType_InputArguments,1467,Variable +MDISTimeSyncObjectType,1468,ObjectType +MDISTimeSyncObjectType_SetTime,1469,Method +MDISTimeSyncObjectType_SetTime_InputArguments,1470,Variable +MDISInformationObjectType,1471,ObjectType +MDISInformationObjectType_TimeSynchronization,1472,Object +MDISInformationObjectType_TimeSynchronization_SetTime,1473,Method +MDISInformationObjectType_TimeSynchronization_SetTime_InputArguments,1474,Variable +MDISInformationObjectType_Signatures,1475,Object +MDISInformationObjectType_MDISVersion,1476,Variable +MDISInformationObjectType_MDISVersion_MajorVersion,1477,Variable +MDISInformationObjectType_MDISVersion_MinorVersion,1478,Variable +MDISInformationObjectType_MDISVersion_Build,1479,Variable +MDISVersionDataType_Encoding_DefaultXml,1480,Object +MDIS_XmlSchema_MDISVersionDataType,1481,Variable +MDIS_XmlSchema_MDISVersionDataType_DataTypeVersion,1482,Variable +MDIS_XmlSchema_MDISVersionDataType_DictionaryFragment,1483,Variable +MDISVersionDataType_Encoding_DefaultBinary,1484,Object +MDIS_BinarySchema_MDISVersionDataType,1485,Variable +MDIS_BinarySchema_MDISVersionDataType_DataTypeVersion,1486,Variable +MDIS_BinarySchema_MDISVersionDataType_DictionaryFragment,1487,Variable +MDISValveObjectType_ValveSignature_MimeType,15001,Variable +MDIS_BinarySchema_Deprecated,15002,Variable +MDIS_XmlSchema_Deprecated,15003,Variable +MDISVersionDataType_Encoding_DefaultJson,15004,Object diff --git a/ModelCompiler/Design.v104/MDIS.xml b/ModelCompiler/Design.v104/MDIS.xml new file mode 100644 index 00000000..091cb9cd --- /dev/null +++ b/ModelCompiler/Design.v104/MDIS.xml @@ -0,0 +1,549 @@ + + + + + + http://opcfoundation.org/UA/ + http://opcfoundation.org/UA/MDIS + + + + + + + Disable the device (false), or enable the device (true) + + + + + + Reference used to indicate an interlock variable (all Options) + InterlockOf + + + + Reference used to indicate an interlock variable (all Options) + SignatureOf + + + + Reference used to indicate an interlock variable associated with the given boolean summary interlock + HasInterlockInformation + + + + The base Object type from which all other station types are built + + + + + + + + + + + + + + + Tag ID + The id used in other parts of the system + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This Variable type returns a Boolean indicating if the interlock is active, it shall also contain an InterlockFor reference + + + + a standard representation of the version information that is related the MDIS Specification + + + + + + + + + + + + + + + + + The enumeration indicates whether the command is to open the valve or to close the valve + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + Boolean indicating if a profile should be generated by this move command request. + + + Boolean indicates that this command is a shutdown move command. + + + + + + + + + A number (in prercent) indicating the percent open + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + + + + + + + true is opening a valve, false if closing the valve + + + number of steps to open/close the valve + + + Boolean indicating if the open or close command should override any defeat able interlocks + + + The selection of which SEM to send the command to. + + + + + + + + + + + + + A number (in percent) indicating the percent open + + + + + + + + + + Boolean state that is being written to the object + + + + + + + + + Unit32 state that is being written to the object + + + + + + + + + Float value that is being written to the object + + + + + + + + The definition of a standard MDIS Valve Object + + + + + + + + + + + + + + + + + + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + <ValveSignature> + <ValveSignature> + HasSignature + + + + + + + + + The definition of a MDIS standard Digital Instrument + + + + + + + + + The definition of a MDIS standard Digital Output + + + + + + + + + The definition of a MDIS standard Discrete Instrument + + + + + + + + + The definition of a MDIS standard Discrete Instrument + + + + + + + + + The definition of a MDIS standard Instrument + + + + + + + + + + + + + + + + + + + + + + + + + + + + The definition of a MDIS standard instrument Output + + + + + + + + + + The definition of a standard MDIS Valve Object + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + + + + + + + + + The definition of a standard MDIS Valve Object + + + <InstrumentPlaceholder> + <InstrumentPlaceholder> + + + <DigitalPlaceholder> + <DigitalPlaceholder> + + + <DiscretePlaceholder> + <DiscretePlaceholder> + + + <InstrumentOutPlaceholder> + <InstrumentOutPlaceholder> + + + <DigitalOutPlaceholder> + <DigitalOutPlaceholder> + + + <DiscreteOutPlaceholder> + <DiscreteOutPlaceholder> + + + <ValvePlaceholder> + <ValvePlaceholder> + + + <ChokePlaceholder> + <ChokePlaceholder> + + + + <InterlockPlaceholder> + <InterlockPlaceholder> + HasInterlock + + + + + + + + + + + + The UTC Time that the Server shall use to update its internal clock. + + + + + + + The definition of a MDIS Time Sync object + + + + + + + + + The definition of a MDIS standard Information + + + + + + + + + + + \ No newline at end of file diff --git a/ModelCompiler/Design.v104/MTConnectModel.csv b/ModelCompiler/Design.v104/MTConnectModel.csv index e18ca7f1..841be5a4 100644 --- a/ModelCompiler/Design.v104/MTConnectModel.csv +++ b/ModelCompiler/Design.v104/MTConnectModel.csv @@ -3761,3 +3761,36 @@ VoltageConditionType_ConditionSubClassId,10540,Variable Volt_AmperageConditionType_ConditionSubClassId,10541,Variable VoltAmperageReactiveConditionType_ConditionSubClassId,10542,Variable WattageConditionType_ConditionSubClassId,10543,Variable +OpcUaMTConnectNamespaceMetadata,15001,Object +OpcUaMTConnectNamespaceMetadata_NamespaceUri,15002,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceVersion,15003,Variable +OpcUaMTConnectNamespaceMetadata_NamespacePublicationDate,15004,Variable +OpcUaMTConnectNamespaceMetadata_IsNamespaceSubset,15005,Variable +OpcUaMTConnectNamespaceMetadata_StaticNodeIdTypes,15006,Variable +OpcUaMTConnectNamespaceMetadata_StaticNumericNodeIdRange,15007,Variable +OpcUaMTConnectNamespaceMetadata_StaticStringNodeIdPattern,15008,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile,15009,Object +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Size,15010,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Writable,15011,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_UserWritable,15012,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_OpenCount,15013,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_MimeType,15014,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Open,15015,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Open_InputArguments,15016,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Open_OutputArguments,15017,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Close,15018,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Close_InputArguments,15019,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Read,15020,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Read_InputArguments,15021,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Read_OutputArguments,15022,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Write,15023,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_Write_InputArguments,15024,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_GetPosition,15025,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15026,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15027,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_SetPosition,15028,Method +OpcUaMTConnectNamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15029,Variable +OpcUaMTConnectNamespaceMetadata_NamespaceFile_ExportNamespace,15030,Method +OpcUaMTConnectNamespaceMetadata_DefaultRolePermissions,15031,Variable +OpcUaMTConnectNamespaceMetadata_DefaultUserRolePermissions,15032,Variable +OpcUaMTConnectNamespaceMetadata_DefaultAccessRestrictions,15033,Variable diff --git a/ModelCompiler/Design.v104/MTConnectModel.xml b/ModelCompiler/Design.v104/MTConnectModel.xml index e1ac35f5..379e5843 100644 --- a/ModelCompiler/Design.v104/MTConnectModel.xml +++ b/ModelCompiler/Design.v104/MTConnectModel.xml @@ -15,6 +15,60 @@ http://opcfoundation.org/UA/MTConnect/ http://opcfoundation.org/UA/ + + + http://opcfoundation.org/UA/MTConnect/ + + + + http://opcfoundation.org/UA/MTConnect/ + + + + + 1.00 + + + + + 2013-12-31 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + ua:HasComponent + ua:Server_Namespaces + + + diff --git a/ModelCompiler/Design.v104/OpcUaAdiModel.csv b/ModelCompiler/Design.v104/OpcUaAdiModel.csv index 2c73ffc8..14b37120 100644 --- a/ModelCompiler/Design.v104/OpcUaAdiModel.csv +++ b/ModelCompiler/Design.v104/OpcUaAdiModel.csv @@ -48,7 +48,6 @@ AnalyserDeviceType_MethodSet_MethodIdentifier,9383,Method AnalyserDeviceType_Identification,9386,Object AnalyserDeviceType_Identification_UIElement,9387,Variable AnalyserDeviceType_Lock,9388,Object -AnalyserDeviceType_Lock_Locked,9389,Variable AnalyserDeviceType_Lock_LockingClient,9390,Variable AnalyserDeviceType_Lock_LockingUser,9391,Variable AnalyserDeviceType_Lock_RemainingLockTime,9392,Variable @@ -142,7 +141,6 @@ AnalyserDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,9504,Method AnalyserDeviceType_ChannelIdentifier_Identification,9505,Object AnalyserDeviceType_ChannelIdentifier_Identification_UIElement,9506,Variable AnalyserDeviceType_ChannelIdentifier_Lock,9507,Object -AnalyserDeviceType_ChannelIdentifier_Lock_Locked,9508,Variable AnalyserDeviceType_ChannelIdentifier_Lock_LockingClient,9509,Variable AnalyserDeviceType_ChannelIdentifier_Lock_LockingUser,9510,Variable AnalyserDeviceType_ChannelIdentifier_Lock_RemainingLockTime,9511,Variable @@ -318,7 +316,6 @@ AnalyserChannelType_MethodSet_MethodIdentifier,9680,Method AnalyserChannelType_Identification,9683,Object AnalyserChannelType_Identification_UIElement,9684,Variable AnalyserChannelType_Lock,9685,Object -AnalyserChannelType_Lock_Locked,9686,Variable AnalyserChannelType_Lock_LockingClient,9687,Variable AnalyserChannelType_Lock_LockingUser,9688,Variable AnalyserChannelType_Lock_RemainingLockTime,9689,Variable @@ -430,7 +427,6 @@ AnalyserChannelType_StreamIdentifier_MethodSet_MethodIdentifier,9794,Method AnalyserChannelType_StreamIdentifier_Identification,9795,Object AnalyserChannelType_StreamIdentifier_Identification_UIElement,9796,Variable AnalyserChannelType_StreamIdentifier_Lock,9797,Object -AnalyserChannelType_StreamIdentifier_Lock_Locked,9798,Variable AnalyserChannelType_StreamIdentifier_Lock_LockingClient,9799,Variable AnalyserChannelType_StreamIdentifier_Lock_LockingUser,9800,Variable AnalyserChannelType_StreamIdentifier_Lock_RemainingLockTime,9801,Variable @@ -956,7 +952,6 @@ StreamType_MethodSet_MethodIdentifier,10320,Method StreamType_Identification,10323,Object StreamType_Identification_UIElement,10324,Variable StreamType_Lock,10325,Object -StreamType_Lock_Locked,10326,Variable StreamType_Lock_LockingClient,10327,Variable StreamType_Lock_LockingUser,10328,Variable StreamType_Lock_RemainingLockTime,10329,Variable @@ -1083,7 +1078,6 @@ SpectrometerDeviceStreamType_MethodSet_MethodIdentifier,10449,Method SpectrometerDeviceStreamType_Identification,10452,Object SpectrometerDeviceStreamType_Identification_UIElement,10453,Variable SpectrometerDeviceStreamType_Lock,10454,Object -SpectrometerDeviceStreamType_Lock_Locked,10455,Variable SpectrometerDeviceStreamType_Lock_LockingClient,10456,Variable SpectrometerDeviceStreamType_Lock_LockingUser,10457,Variable SpectrometerDeviceStreamType_Lock_RemainingLockTime,10458,Variable @@ -1274,7 +1268,6 @@ MassSpectrometerDeviceStreamType_MethodSet_MethodIdentifier,10642,Method MassSpectrometerDeviceStreamType_Identification,10645,Object MassSpectrometerDeviceStreamType_Identification_UIElement,10646,Variable MassSpectrometerDeviceStreamType_Lock,10647,Object -MassSpectrometerDeviceStreamType_Lock_Locked,10648,Variable MassSpectrometerDeviceStreamType_Lock_LockingClient,10649,Variable MassSpectrometerDeviceStreamType_Lock_LockingUser,10650,Variable MassSpectrometerDeviceStreamType_Lock_RemainingLockTime,10651,Variable @@ -1401,7 +1394,6 @@ ParticleSizeMonitorDeviceStreamType_MethodSet_MethodIdentifier,10771,Method ParticleSizeMonitorDeviceStreamType_Identification,10774,Object ParticleSizeMonitorDeviceStreamType_Identification_UIElement,10775,Variable ParticleSizeMonitorDeviceStreamType_Lock,10776,Object -ParticleSizeMonitorDeviceStreamType_Lock_Locked,10777,Variable ParticleSizeMonitorDeviceStreamType_Lock_LockingClient,10778,Variable ParticleSizeMonitorDeviceStreamType_Lock_LockingUser,10779,Variable ParticleSizeMonitorDeviceStreamType_Lock_RemainingLockTime,10780,Variable @@ -1549,7 +1541,6 @@ AcousticSpectrometerDeviceStreamType_MethodSet_MethodIdentifier,10921,Method AcousticSpectrometerDeviceStreamType_Identification,10924,Object AcousticSpectrometerDeviceStreamType_Identification_UIElement,10925,Variable AcousticSpectrometerDeviceStreamType_Lock,10926,Object -AcousticSpectrometerDeviceStreamType_Lock_Locked,10927,Variable AcousticSpectrometerDeviceStreamType_Lock_LockingClient,10928,Variable AcousticSpectrometerDeviceStreamType_Lock_LockingUser,10929,Variable AcousticSpectrometerDeviceStreamType_Lock_RemainingLockTime,10930,Variable @@ -1676,7 +1667,6 @@ ChromatographDeviceStreamType_MethodSet_MethodIdentifier,11050,Method ChromatographDeviceStreamType_Identification,11053,Object ChromatographDeviceStreamType_Identification_UIElement,11054,Variable ChromatographDeviceStreamType_Lock,11055,Object -ChromatographDeviceStreamType_Lock_Locked,11056,Variable ChromatographDeviceStreamType_Lock_LockingClient,11057,Variable ChromatographDeviceStreamType_Lock_LockingUser,11058,Variable ChromatographDeviceStreamType_Lock_RemainingLockTime,11059,Variable @@ -1803,7 +1793,6 @@ MNRDeviceStreamType_MethodSet_MethodIdentifier,11179,Method MNRDeviceStreamType_Identification,11182,Object MNRDeviceStreamType_Identification_UIElement,11183,Variable MNRDeviceStreamType_Lock,11184,Object -MNRDeviceStreamType_Lock_Locked,11185,Variable MNRDeviceStreamType_Lock_LockingClient,11186,Variable MNRDeviceStreamType_Lock_LockingUser,11187,Variable MNRDeviceStreamType_Lock_RemainingLockTime,11188,Variable @@ -1930,7 +1919,6 @@ SpectrometerDeviceType_MethodSet_MethodIdentifier,11308,Method SpectrometerDeviceType_Identification,11311,Object SpectrometerDeviceType_Identification_UIElement,11312,Variable SpectrometerDeviceType_Lock,11313,Object -SpectrometerDeviceType_Lock_Locked,11314,Variable SpectrometerDeviceType_Lock_LockingClient,11315,Variable SpectrometerDeviceType_Lock_LockingUser,11316,Variable SpectrometerDeviceType_Lock_RemainingLockTime,11317,Variable @@ -2024,7 +2012,6 @@ SpectrometerDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,11429,Method SpectrometerDeviceType_ChannelIdentifier_Identification,11430,Object SpectrometerDeviceType_ChannelIdentifier_Identification_UIElement,11431,Variable SpectrometerDeviceType_ChannelIdentifier_Lock,11432,Object -SpectrometerDeviceType_ChannelIdentifier_Lock_Locked,11433,Variable SpectrometerDeviceType_ChannelIdentifier_Lock_LockingClient,11434,Variable SpectrometerDeviceType_ChannelIdentifier_Lock_LockingUser,11435,Variable SpectrometerDeviceType_ChannelIdentifier_Lock_RemainingLockTime,11436,Variable @@ -2152,7 +2139,6 @@ ParticleSizeMonitorDeviceType_MethodSet_MethodIdentifier,11557,Method ParticleSizeMonitorDeviceType_Identification,11560,Object ParticleSizeMonitorDeviceType_Identification_UIElement,11561,Variable ParticleSizeMonitorDeviceType_Lock,11562,Object -ParticleSizeMonitorDeviceType_Lock_Locked,11563,Variable ParticleSizeMonitorDeviceType_Lock_LockingClient,11564,Variable ParticleSizeMonitorDeviceType_Lock_LockingUser,11565,Variable ParticleSizeMonitorDeviceType_Lock_RemainingLockTime,11566,Variable @@ -2246,7 +2232,6 @@ ParticleSizeMonitorDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,11678 ParticleSizeMonitorDeviceType_ChannelIdentifier_Identification,11679,Object ParticleSizeMonitorDeviceType_ChannelIdentifier_Identification_UIElement,11680,Variable ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock,11681,Object -ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock_Locked,11682,Variable ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock_LockingClient,11683,Variable ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock_LockingUser,11684,Variable ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock_RemainingLockTime,11685,Variable @@ -2371,7 +2356,6 @@ ChromatographDeviceType_MethodSet_MethodIdentifier,11803,Method ChromatographDeviceType_Identification,11806,Object ChromatographDeviceType_Identification_UIElement,11807,Variable ChromatographDeviceType_Lock,11808,Object -ChromatographDeviceType_Lock_Locked,11809,Variable ChromatographDeviceType_Lock_LockingClient,11810,Variable ChromatographDeviceType_Lock_LockingUser,11811,Variable ChromatographDeviceType_Lock_RemainingLockTime,11812,Variable @@ -2465,7 +2449,6 @@ ChromatographDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,11924,Metho ChromatographDeviceType_ChannelIdentifier_Identification,11925,Object ChromatographDeviceType_ChannelIdentifier_Identification_UIElement,11926,Variable ChromatographDeviceType_ChannelIdentifier_Lock,11927,Object -ChromatographDeviceType_ChannelIdentifier_Lock_Locked,11928,Variable ChromatographDeviceType_ChannelIdentifier_Lock_LockingClient,11929,Variable ChromatographDeviceType_ChannelIdentifier_Lock_LockingUser,11930,Variable ChromatographDeviceType_ChannelIdentifier_Lock_RemainingLockTime,11931,Variable @@ -2590,7 +2573,6 @@ MassSpectrometerDeviceType_MethodSet_MethodIdentifier,12049,Method MassSpectrometerDeviceType_Identification,12052,Object MassSpectrometerDeviceType_Identification_UIElement,12053,Variable MassSpectrometerDeviceType_Lock,12054,Object -MassSpectrometerDeviceType_Lock_Locked,12055,Variable MassSpectrometerDeviceType_Lock_LockingClient,12056,Variable MassSpectrometerDeviceType_Lock_LockingUser,12057,Variable MassSpectrometerDeviceType_Lock_RemainingLockTime,12058,Variable @@ -2684,7 +2666,6 @@ MassSpectrometerDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,12170,Me MassSpectrometerDeviceType_ChannelIdentifier_Identification,12171,Object MassSpectrometerDeviceType_ChannelIdentifier_Identification_UIElement,12172,Variable MassSpectrometerDeviceType_ChannelIdentifier_Lock,12173,Object -MassSpectrometerDeviceType_ChannelIdentifier_Lock_Locked,12174,Variable MassSpectrometerDeviceType_ChannelIdentifier_Lock_LockingClient,12175,Variable MassSpectrometerDeviceType_ChannelIdentifier_Lock_LockingUser,12176,Variable MassSpectrometerDeviceType_ChannelIdentifier_Lock_RemainingLockTime,12177,Variable @@ -2809,7 +2790,6 @@ AcousticSpectrometerDeviceType_MethodSet_MethodIdentifier,12295,Method AcousticSpectrometerDeviceType_Identification,12298,Object AcousticSpectrometerDeviceType_Identification_UIElement,12299,Variable AcousticSpectrometerDeviceType_Lock,12300,Object -AcousticSpectrometerDeviceType_Lock_Locked,12301,Variable AcousticSpectrometerDeviceType_Lock_LockingClient,12302,Variable AcousticSpectrometerDeviceType_Lock_LockingUser,12303,Variable AcousticSpectrometerDeviceType_Lock_RemainingLockTime,12304,Variable @@ -2903,7 +2883,6 @@ AcousticSpectrometerDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,1241 AcousticSpectrometerDeviceType_ChannelIdentifier_Identification,12417,Object AcousticSpectrometerDeviceType_ChannelIdentifier_Identification_UIElement,12418,Variable AcousticSpectrometerDeviceType_ChannelIdentifier_Lock,12419,Object -AcousticSpectrometerDeviceType_ChannelIdentifier_Lock_Locked,12420,Variable AcousticSpectrometerDeviceType_ChannelIdentifier_Lock_LockingClient,12421,Variable AcousticSpectrometerDeviceType_ChannelIdentifier_Lock_LockingUser,12422,Variable AcousticSpectrometerDeviceType_ChannelIdentifier_Lock_RemainingLockTime,12423,Variable @@ -3028,7 +3007,6 @@ NMRDeviceType_MethodSet_MethodIdentifier,12541,Method NMRDeviceType_Identification,12544,Object NMRDeviceType_Identification_UIElement,12545,Variable NMRDeviceType_Lock,12546,Object -NMRDeviceType_Lock_Locked,12547,Variable NMRDeviceType_Lock_LockingClient,12548,Variable NMRDeviceType_Lock_LockingUser,12549,Variable NMRDeviceType_Lock_RemainingLockTime,12550,Variable @@ -3122,7 +3100,6 @@ NMRDeviceType_ChannelIdentifier_MethodSet_MethodIdentifier,12662,Method NMRDeviceType_ChannelIdentifier_Identification,12663,Object NMRDeviceType_ChannelIdentifier_Identification_UIElement,12664,Variable NMRDeviceType_ChannelIdentifier_Lock,12665,Object -NMRDeviceType_ChannelIdentifier_Lock_Locked,12666,Variable NMRDeviceType_ChannelIdentifier_Lock_LockingClient,12667,Variable NMRDeviceType_ChannelIdentifier_Lock_LockingUser,12668,Variable NMRDeviceType_ChannelIdentifier_Lock_RemainingLockTime,12669,Variable @@ -3264,7 +3241,6 @@ AccessorySlotType_AccessoryIdentifier_MethodSet_MethodIdentifier,12804,Method AccessorySlotType_AccessoryIdentifier_Identification,12805,Object AccessorySlotType_AccessoryIdentifier_Identification_UIElement,12806,Variable AccessorySlotType_AccessoryIdentifier_Lock,12807,Object -AccessorySlotType_AccessoryIdentifier_Lock_Locked,12808,Variable AccessorySlotType_AccessoryIdentifier_Lock_LockingClient,12809,Variable AccessorySlotType_AccessoryIdentifier_Lock_LockingUser,12810,Variable AccessorySlotType_AccessoryIdentifier_Lock_RemainingLockTime,12811,Variable @@ -3339,7 +3315,6 @@ AccessoryType_MethodSet_MethodIdentifier,12879,Method AccessoryType_Identification,12882,Object AccessoryType_Identification_UIElement,12883,Variable AccessoryType_Lock,12884,Object -AccessoryType_Lock_Locked,12885,Variable AccessoryType_Lock_LockingClient,12886,Variable AccessoryType_Lock_LockingUser,12887,Variable AccessoryType_Lock_RemainingLockTime,12888,Variable @@ -3367,7 +3342,6 @@ DetectorType_MethodSet_MethodIdentifier,12909,Method DetectorType_Identification,12912,Object DetectorType_Identification_UIElement,12913,Variable DetectorType_Lock,12914,Object -DetectorType_Lock_Locked,12915,Variable DetectorType_Lock_LockingClient,12916,Variable DetectorType_Lock_LockingUser,12917,Variable DetectorType_Lock_RemainingLockTime,12918,Variable @@ -3395,7 +3369,6 @@ SmartSamplingSystemType_MethodSet_MethodIdentifier,12939,Method SmartSamplingSystemType_Identification,12942,Object SmartSamplingSystemType_Identification_UIElement,12943,Variable SmartSamplingSystemType_Lock,12944,Object -SmartSamplingSystemType_Lock_Locked,12945,Variable SmartSamplingSystemType_Lock_LockingClient,12946,Variable SmartSamplingSystemType_Lock_LockingUser,12947,Variable SmartSamplingSystemType_Lock_RemainingLockTime,12948,Variable @@ -3423,7 +3396,6 @@ SourceType_MethodSet_MethodIdentifier,12969,Method SourceType_Identification,12972,Object SourceType_Identification_UIElement,12973,Variable SourceType_Lock,12974,Object -SourceType_Lock_Locked,12975,Variable SourceType_Lock_LockingClient,12976,Variable SourceType_Lock_LockingUser,12977,Variable SourceType_Lock_RemainingLockTime,12978,Variable @@ -3451,7 +3423,6 @@ GcOvenType_MethodSet_MethodIdentifier,12999,Method GcOvenType_Identification,13002,Object GcOvenType_Identification_UIElement,13003,Variable GcOvenType_Lock,13004,Object -GcOvenType_Lock_Locked,13005,Variable GcOvenType_Lock_LockingClient,13006,Variable GcOvenType_Lock_LockingUser,13007,Variable GcOvenType_Lock_RemainingLockTime,13008,Variable @@ -3540,7 +3511,6 @@ AnalyserDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13090,Method AnalyserDeviceType_CPIdentifier_Identification,13091,Object AnalyserDeviceType_CPIdentifier_Identification_UIElement,13092,Variable AnalyserDeviceType_CPIdentifier_Lock,13093,Object -AnalyserDeviceType_CPIdentifier_Lock_Locked,13094,Variable AnalyserDeviceType_CPIdentifier_Lock_LockingClient,13095,Variable AnalyserDeviceType_CPIdentifier_Lock_LockingUser,13096,Variable AnalyserDeviceType_CPIdentifier_Lock_RemainingLockTime,13097,Variable @@ -3565,7 +3535,6 @@ SpectrometerDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13115,Method SpectrometerDeviceType_CPIdentifier_Identification,13116,Object SpectrometerDeviceType_CPIdentifier_Identification_UIElement,13117,Variable SpectrometerDeviceType_CPIdentifier_Lock,13118,Object -SpectrometerDeviceType_CPIdentifier_Lock_Locked,13119,Variable SpectrometerDeviceType_CPIdentifier_Lock_LockingClient,13120,Variable SpectrometerDeviceType_CPIdentifier_Lock_LockingUser,13121,Variable SpectrometerDeviceType_CPIdentifier_Lock_RemainingLockTime,13122,Variable @@ -3590,7 +3559,6 @@ ParticleSizeMonitorDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13140,Meth ParticleSizeMonitorDeviceType_CPIdentifier_Identification,13141,Object ParticleSizeMonitorDeviceType_CPIdentifier_Identification_UIElement,13142,Variable ParticleSizeMonitorDeviceType_CPIdentifier_Lock,13143,Object -ParticleSizeMonitorDeviceType_CPIdentifier_Lock_Locked,13144,Variable ParticleSizeMonitorDeviceType_CPIdentifier_Lock_LockingClient,13145,Variable ParticleSizeMonitorDeviceType_CPIdentifier_Lock_LockingUser,13146,Variable ParticleSizeMonitorDeviceType_CPIdentifier_Lock_RemainingLockTime,13147,Variable @@ -3615,7 +3583,6 @@ ChromatographDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13165,Method ChromatographDeviceType_CPIdentifier_Identification,13166,Object ChromatographDeviceType_CPIdentifier_Identification_UIElement,13167,Variable ChromatographDeviceType_CPIdentifier_Lock,13168,Object -ChromatographDeviceType_CPIdentifier_Lock_Locked,13169,Variable ChromatographDeviceType_CPIdentifier_Lock_LockingClient,13170,Variable ChromatographDeviceType_CPIdentifier_Lock_LockingUser,13171,Variable ChromatographDeviceType_CPIdentifier_Lock_RemainingLockTime,13172,Variable @@ -3640,7 +3607,6 @@ MassSpectrometerDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13190,Method MassSpectrometerDeviceType_CPIdentifier_Identification,13191,Object MassSpectrometerDeviceType_CPIdentifier_Identification_UIElement,13192,Variable MassSpectrometerDeviceType_CPIdentifier_Lock,13193,Object -MassSpectrometerDeviceType_CPIdentifier_Lock_Locked,13194,Variable MassSpectrometerDeviceType_CPIdentifier_Lock_LockingClient,13195,Variable MassSpectrometerDeviceType_CPIdentifier_Lock_LockingUser,13196,Variable MassSpectrometerDeviceType_CPIdentifier_Lock_RemainingLockTime,13197,Variable @@ -3665,7 +3631,6 @@ AcousticSpectrometerDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13215,Met AcousticSpectrometerDeviceType_CPIdentifier_Identification,13216,Object AcousticSpectrometerDeviceType_CPIdentifier_Identification_UIElement,13217,Variable AcousticSpectrometerDeviceType_CPIdentifier_Lock,13218,Object -AcousticSpectrometerDeviceType_CPIdentifier_Lock_Locked,13219,Variable AcousticSpectrometerDeviceType_CPIdentifier_Lock_LockingClient,13220,Variable AcousticSpectrometerDeviceType_CPIdentifier_Lock_LockingUser,13221,Variable AcousticSpectrometerDeviceType_CPIdentifier_Lock_RemainingLockTime,13222,Variable @@ -3690,7 +3655,6 @@ NMRDeviceType_CPIdentifier_MethodSet_MethodIdentifier,13240,Method NMRDeviceType_CPIdentifier_Identification,13241,Object NMRDeviceType_CPIdentifier_Identification_UIElement,13242,Variable NMRDeviceType_CPIdentifier_Lock,13243,Object -NMRDeviceType_CPIdentifier_Lock_Locked,13244,Variable NMRDeviceType_CPIdentifier_Lock_LockingClient,13245,Variable NMRDeviceType_CPIdentifier_Lock_LockingUser,13246,Variable NMRDeviceType_CPIdentifier_Lock_RemainingLockTime,13247,Variable @@ -3854,3 +3818,100 @@ NMRDeviceType_ChannelIdentifier_ChannelStateMachine_MaintenanceSubStateMachine_A NMRDeviceType_AccessorySlotIdentifier_AccessorySlotStateMachine_AvailableTransitions,13471,Variable AccessorySlotType_AccessorySlotStateMachine_AvailableTransitions,13472,Variable AccessorySlotStateMachineType_AvailableTransitions,13473,Variable +OpcUaAdiNamespaceMetadata,15001,Object +OpcUaAdiNamespaceMetadata_NamespaceUri,15002,Variable +OpcUaAdiNamespaceMetadata_NamespaceVersion,15003,Variable +OpcUaAdiNamespaceMetadata_NamespacePublicationDate,15004,Variable +OpcUaAdiNamespaceMetadata_IsNamespaceSubset,15005,Variable +OpcUaAdiNamespaceMetadata_StaticNodeIdTypes,15006,Variable +OpcUaAdiNamespaceMetadata_StaticNumericNodeIdRange,15007,Variable +OpcUaAdiNamespaceMetadata_StaticStringNodeIdPattern,15008,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile,15009,Object +OpcUaAdiNamespaceMetadata_NamespaceFile_Size,15010,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Writable,15011,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_UserWritable,15012,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_OpenCount,15013,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_MimeType,15014,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Open,15015,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_Open_InputArguments,15016,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Open_OutputArguments,15017,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Close,15018,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_Close_InputArguments,15019,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Read,15020,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_Read_InputArguments,15021,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Read_OutputArguments,15022,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_Write,15023,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_Write_InputArguments,15024,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_GetPosition,15025,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15026,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15027,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_SetPosition,15028,Method +OpcUaAdiNamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15029,Variable +OpcUaAdiNamespaceMetadata_NamespaceFile_ExportNamespace,15030,Method +OpcUaAdiNamespaceMetadata_DefaultRolePermissions,15031,Variable +OpcUaAdiNamespaceMetadata_DefaultUserRolePermissions,15032,Variable +OpcUaAdiNamespaceMetadata_DefaultAccessRestrictions,15033,Variable +AnalyserDeviceType_Lock_DefaultInstanceBrowseName,15034,Variable +AnalyserDeviceType_ManufacturerUri,15035,Variable +AnalyserDeviceType_ProductCode,15036,Variable +AnalyserDeviceType_AssetId,15037,Variable +AnalyserDeviceType_ComponentName,15038,Variable +AnalyserDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15039,Variable +AnalyserDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15040,Variable +AnalyserChannelType_Lock_DefaultInstanceBrowseName,15041,Variable +AnalyserChannelType_StreamIdentifier_Lock_DefaultInstanceBrowseName,15042,Variable +StreamType_Lock_DefaultInstanceBrowseName,15043,Variable +SpectrometerDeviceStreamType_Lock_DefaultInstanceBrowseName,15044,Variable +MassSpectrometerDeviceStreamType_Lock_DefaultInstanceBrowseName,15045,Variable +ParticleSizeMonitorDeviceStreamType_Lock_DefaultInstanceBrowseName,15046,Variable +AcousticSpectrometerDeviceStreamType_Lock_DefaultInstanceBrowseName,15047,Variable +ChromatographDeviceStreamType_Lock_DefaultInstanceBrowseName,15048,Variable +MNRDeviceStreamType_Lock_DefaultInstanceBrowseName,15049,Variable +SpectrometerDeviceType_Lock_DefaultInstanceBrowseName,15050,Variable +SpectrometerDeviceType_ManufacturerUri,15051,Variable +SpectrometerDeviceType_ProductCode,15052,Variable +SpectrometerDeviceType_AssetId,15053,Variable +SpectrometerDeviceType_ComponentName,15054,Variable +SpectrometerDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15055,Variable +SpectrometerDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15056,Variable +ParticleSizeMonitorDeviceType_Lock_DefaultInstanceBrowseName,15057,Variable +ParticleSizeMonitorDeviceType_ManufacturerUri,15058,Variable +ParticleSizeMonitorDeviceType_ProductCode,15059,Variable +ParticleSizeMonitorDeviceType_AssetId,15060,Variable +ParticleSizeMonitorDeviceType_ComponentName,15061,Variable +ParticleSizeMonitorDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15062,Variable +ParticleSizeMonitorDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15063,Variable +ChromatographDeviceType_Lock_DefaultInstanceBrowseName,15064,Variable +ChromatographDeviceType_ManufacturerUri,15065,Variable +ChromatographDeviceType_ProductCode,15066,Variable +ChromatographDeviceType_AssetId,15067,Variable +ChromatographDeviceType_ComponentName,15068,Variable +ChromatographDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15069,Variable +ChromatographDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15070,Variable +MassSpectrometerDeviceType_Lock_DefaultInstanceBrowseName,15071,Variable +MassSpectrometerDeviceType_ManufacturerUri,15072,Variable +MassSpectrometerDeviceType_ProductCode,15073,Variable +MassSpectrometerDeviceType_AssetId,15074,Variable +MassSpectrometerDeviceType_ComponentName,15075,Variable +MassSpectrometerDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15076,Variable +MassSpectrometerDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15077,Variable +AcousticSpectrometerDeviceType_Lock_DefaultInstanceBrowseName,15078,Variable +AcousticSpectrometerDeviceType_ManufacturerUri,15079,Variable +AcousticSpectrometerDeviceType_ProductCode,15080,Variable +AcousticSpectrometerDeviceType_AssetId,15081,Variable +AcousticSpectrometerDeviceType_ComponentName,15082,Variable +AcousticSpectrometerDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15083,Variable +AcousticSpectrometerDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15084,Variable +NMRDeviceType_Lock_DefaultInstanceBrowseName,15085,Variable +NMRDeviceType_ManufacturerUri,15086,Variable +NMRDeviceType_ProductCode,15087,Variable +NMRDeviceType_AssetId,15088,Variable +NMRDeviceType_ComponentName,15089,Variable +NMRDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15090,Variable +NMRDeviceType_ChannelIdentifier_Lock_DefaultInstanceBrowseName,15091,Variable +AccessorySlotType_AccessoryIdentifier_Lock_DefaultInstanceBrowseName,15092,Variable +AccessoryType_Lock_DefaultInstanceBrowseName,15093,Variable +DetectorType_Lock_DefaultInstanceBrowseName,15094,Variable +SmartSamplingSystemType_Lock_DefaultInstanceBrowseName,15095,Variable +SourceType_Lock_DefaultInstanceBrowseName,15096,Variable +GcOvenType_Lock_DefaultInstanceBrowseName,15097,Variable diff --git a/ModelCompiler/Design.v104/OpcUaAdiModel.xml b/ModelCompiler/Design.v104/OpcUaAdiModel.xml index b732bc65..b3602ce4 100644 --- a/ModelCompiler/Design.v104/OpcUaAdiModel.xml +++ b/ModelCompiler/Design.v104/OpcUaAdiModel.xml @@ -14,10 +14,64 @@ http://opcfoundation.org/UA/ADI/ - http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/DI/ http://opcfoundation.org/UA/ + + http://opcfoundation.org/UA/ADI/ + + + + http://opcfoundation.org/UA/ADI/ + + + + + 1.01 + + + + + 2013-07-31 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + OpcUa:HasComponent + OpcUa:Server_Namespaces + + + + diff --git a/ModelCompiler/Design.v104/OpcUaDiModel.csv b/ModelCompiler/Design.v104/OpcUaDiModel.csv index b31d92ff..ef11de1e 100644 --- a/ModelCompiler/Design.v104/OpcUaDiModel.csv +++ b/ModelCompiler/Design.v104/OpcUaDiModel.csv @@ -300,3 +300,36 @@ FetchResultDataDataType_Encoding_DefaultJson,8003,Object ParameterResultDataType_Encoding_DefaultJson,8004,Object OpcUaDi_BinarySchema_Deprecated,8005,Variable OpcUaDi_XmlSchema_Deprecated,8007,Variable +OPCUADINamespaceMetadata,15001,Object +OPCUADINamespaceMetadata_NamespaceUri,15002,Variable +OPCUADINamespaceMetadata_NamespaceVersion,15003,Variable +OPCUADINamespaceMetadata_NamespacePublicationDate,15004,Variable +OPCUADINamespaceMetadata_IsNamespaceSubset,15005,Variable +OPCUADINamespaceMetadata_StaticNodeIdTypes,15006,Variable +OPCUADINamespaceMetadata_StaticNumericNodeIdRange,15007,Variable +OPCUADINamespaceMetadata_StaticStringNodeIdPattern,15008,Variable +OPCUADINamespaceMetadata_NamespaceFile,15009,Object +OPCUADINamespaceMetadata_NamespaceFile_Size,15010,Variable +OPCUADINamespaceMetadata_NamespaceFile_Writable,15011,Variable +OPCUADINamespaceMetadata_NamespaceFile_UserWritable,15012,Variable +OPCUADINamespaceMetadata_NamespaceFile_OpenCount,15013,Variable +OPCUADINamespaceMetadata_NamespaceFile_MimeType,15014,Variable +OPCUADINamespaceMetadata_NamespaceFile_Open,15015,Method +OPCUADINamespaceMetadata_NamespaceFile_Open_InputArguments,15016,Variable +OPCUADINamespaceMetadata_NamespaceFile_Open_OutputArguments,15017,Variable +OPCUADINamespaceMetadata_NamespaceFile_Close,15018,Method +OPCUADINamespaceMetadata_NamespaceFile_Close_InputArguments,15019,Variable +OPCUADINamespaceMetadata_NamespaceFile_Read,15020,Method +OPCUADINamespaceMetadata_NamespaceFile_Read_InputArguments,15021,Variable +OPCUADINamespaceMetadata_NamespaceFile_Read_OutputArguments,15022,Variable +OPCUADINamespaceMetadata_NamespaceFile_Write,15023,Method +OPCUADINamespaceMetadata_NamespaceFile_Write_InputArguments,15024,Variable +OPCUADINamespaceMetadata_NamespaceFile_GetPosition,15025,Method +OPCUADINamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15026,Variable +OPCUADINamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15027,Variable +OPCUADINamespaceMetadata_NamespaceFile_SetPosition,15028,Method +OPCUADINamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15029,Variable +OPCUADINamespaceMetadata_NamespaceFile_ExportNamespace,15030,Method +OPCUADINamespaceMetadata_DefaultRolePermissions,15031,Variable +OPCUADINamespaceMetadata_DefaultUserRolePermissions,15032,Variable +OPCUADINamespaceMetadata_DefaultAccessRestrictions,15033,Variable diff --git a/ModelCompiler/Design.v104/OpcUaDiModel.xml b/ModelCompiler/Design.v104/OpcUaDiModel.xml index c5054380..872d5e96 100644 --- a/ModelCompiler/Design.v104/OpcUaDiModel.xml +++ b/ModelCompiler/Design.v104/OpcUaDiModel.xml @@ -8,7 +8,7 @@ TargetNamespace="http://opcfoundation.org/UA/DI/" TargetXmlNamespace="http://opcfoundation.org/UA/DI/" TargetVersion="1.01" - TargetPublicationDate="2012-12-31T00:00:00Z" + TargetPublicationDate="2018-06-06T00:00:00Z" xmlns="http://opcfoundation.org/UA/ModelDesign.xsd"> @@ -16,6 +16,60 @@ http://opcfoundation.org/UA/ + + http://opcfoundation.org/UA/DI/ + + + + http://opcfoundation.org/UA/DI/ + + + + + 1.01 + + + + + 2018-06-06 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + OpcUa:HasComponent + OpcUa:Server_Namespaces + + + + Used to indicate that source and target Node have a topological connection. @@ -79,7 +133,7 @@ Flat list of Methods - + <MethodIdentifier> A method which belongs to the topology element. @@ -218,7 +272,7 @@ A parameter which belongs to the group. OpcUa:Organizes - + <MethodIdentifier> A method which belongs to the group. OpcUa:Organizes @@ -401,4 +455,4 @@ - + \ No newline at end of file diff --git a/ModelCompiler/Design.v104/OpcUaFdiPart5Model.csv b/ModelCompiler/Design.v104/OpcUaFdiPart5Model.csv index 542021a2..6119f7ec 100644 --- a/ModelCompiler/Design.v104/OpcUaFdiPart5Model.csv +++ b/ModelCompiler/Design.v104/OpcUaFdiPart5Model.csv @@ -160,3 +160,36 @@ TransferIncident_Encoding_DefaultJson,8004,Object ApplyResult_Encoding_DefaultJson,8005,Object OpcUaFdi5_BinarySchema_Deprecated,8006,Variable OpcUaFdi5_XmlSchema_Deprecated,8008,Variable +OpcUaFdi5NamespaceMetadata,15001,Object +OpcUaFdi5NamespaceMetadata_NamespaceUri,15002,Variable +OpcUaFdi5NamespaceMetadata_NamespaceVersion,15003,Variable +OpcUaFdi5NamespaceMetadata_NamespacePublicationDate,15004,Variable +OpcUaFdi5NamespaceMetadata_IsNamespaceSubset,15005,Variable +OpcUaFdi5NamespaceMetadata_StaticNodeIdTypes,15006,Variable +OpcUaFdi5NamespaceMetadata_StaticNumericNodeIdRange,15007,Variable +OpcUaFdi5NamespaceMetadata_StaticStringNodeIdPattern,15008,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile,15009,Object +OpcUaFdi5NamespaceMetadata_NamespaceFile_Size,15010,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Writable,15011,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_UserWritable,15012,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_OpenCount,15013,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_MimeType,15014,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Open,15015,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_Open_InputArguments,15016,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Open_OutputArguments,15017,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Close,15018,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_Close_InputArguments,15019,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Read,15020,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_Read_InputArguments,15021,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Read_OutputArguments,15022,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_Write,15023,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_Write_InputArguments,15024,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_GetPosition,15025,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15026,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15027,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_SetPosition,15028,Method +OpcUaFdi5NamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15029,Variable +OpcUaFdi5NamespaceMetadata_NamespaceFile_ExportNamespace,15030,Method +OpcUaFdi5NamespaceMetadata_DefaultRolePermissions,15031,Variable +OpcUaFdi5NamespaceMetadata_DefaultUserRolePermissions,15032,Variable +OpcUaFdi5NamespaceMetadata_DefaultAccessRestrictions,15033,Variable diff --git a/ModelCompiler/Design.v104/OpcUaFdiPart5Model.xml b/ModelCompiler/Design.v104/OpcUaFdiPart5Model.xml index 9c64f057..d61b6f93 100644 --- a/ModelCompiler/Design.v104/OpcUaFdiPart5Model.xml +++ b/ModelCompiler/Design.v104/OpcUaFdiPart5Model.xml @@ -1,5 +1,6 @@ - +> http://fdi-cooperation.com/OPCUA/FDI5/ - http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/DI/ http://opcfoundation.org/UA/ + + http://fdi-cooperation.com/OPCUA/FDI5/ + + + + http://fdi-cooperation.com/OPCUA/FDI5/ + + + + + 1.1 + + + + + 2017-07-14T00:00:00Z" + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + ua:HasComponent + ua:Server_Namespaces + + + + diff --git a/ModelCompiler/Design.v104/OpcUaFdiPart7Model.csv b/ModelCompiler/Design.v104/OpcUaFdiPart7Model.csv index 5dcf581e..107a6b81 100644 --- a/ModelCompiler/Design.v104/OpcUaFdiPart7Model.csv +++ b/ModelCompiler/Design.v104/OpcUaFdiPart7Model.csv @@ -18,7 +18,6 @@ CommunicationServerType_GroupIdentifier_UIElement,17,Variable CommunicationServerType_Identification,18,Object CommunicationServerType_Identification_UIElement,19,Variable CommunicationServerType_Lock,20,Object -CommunicationServerType_Lock_Locked,21,Variable CommunicationServerType_Lock_LockingClient,22,Variable CommunicationServerType_Lock_LockingUser,23,Variable CommunicationServerType_Lock_RemainingLockTime,24,Variable @@ -57,7 +56,6 @@ CommunicationServerType_CPIdentifier_MethodSet_MethodIdentifier,56,Method CommunicationServerType_CPIdentifier_Identification,57,Object CommunicationServerType_CPIdentifier_Identification_UIElement,58,Variable CommunicationServerType_CPIdentifier_Lock,59,Object -CommunicationServerType_CPIdentifier_Lock_Locked,60,Variable CommunicationServerType_CPIdentifier_Lock_LockingClient,61,Variable CommunicationServerType_CPIdentifier_Lock_LockingUser,62,Variable CommunicationServerType_CPIdentifier_Lock_RemainingLockTime,63,Variable @@ -97,7 +95,6 @@ ServerCommunicationDeviceType_GroupIdentifier_UIElement,99,Variable ServerCommunicationDeviceType_Identification,100,Object ServerCommunicationDeviceType_Identification_UIElement,101,Variable ServerCommunicationDeviceType_Lock,102,Object -ServerCommunicationDeviceType_Lock_Locked,103,Variable ServerCommunicationDeviceType_Lock_LockingClient,104,Variable ServerCommunicationDeviceType_Lock_LockingUser,105,Variable ServerCommunicationDeviceType_Lock_RemainingLockTime,106,Variable @@ -136,7 +133,6 @@ ServerCommunicationDeviceType_CPIdentifier_MethodSet_MethodIdentifier,138,Method ServerCommunicationDeviceType_CPIdentifier_Identification,139,Object ServerCommunicationDeviceType_CPIdentifier_Identification_UIElement,140,Variable ServerCommunicationDeviceType_CPIdentifier_Lock,141,Object -ServerCommunicationDeviceType_CPIdentifier_Lock_Locked,142,Variable ServerCommunicationDeviceType_CPIdentifier_Lock_LockingClient,143,Variable ServerCommunicationDeviceType_CPIdentifier_Lock_LockingUser,144,Variable ServerCommunicationDeviceType_CPIdentifier_Lock_RemainingLockTime,145,Variable @@ -174,7 +170,6 @@ ServerCommunicationServiceType_GroupIdentifier_UIElement,239,Variable ServerCommunicationServiceType_Identification,240,Object ServerCommunicationServiceType_Identification_UIElement,241,Variable ServerCommunicationServiceType_Lock,242,Object -ServerCommunicationServiceType_Lock_Locked,243,Variable ServerCommunicationServiceType_Lock_LockingClient,244,Variable ServerCommunicationServiceType_Lock_LockingUser,245,Variable ServerCommunicationServiceType_Lock_RemainingLockTime,246,Variable @@ -213,7 +208,6 @@ ServerCommunicationServiceType_CPIdentifier_MethodSet_MethodIdentifier,278,Metho ServerCommunicationServiceType_CPIdentifier_Identification,279,Object ServerCommunicationServiceType_CPIdentifier_Identification_UIElement,280,Variable ServerCommunicationServiceType_CPIdentifier_Lock,281,Object -ServerCommunicationServiceType_CPIdentifier_Lock_Locked,282,Variable ServerCommunicationServiceType_CPIdentifier_Lock_LockingClient,283,Variable ServerCommunicationServiceType_CPIdentifier_Lock_LockingUser,284,Variable ServerCommunicationServiceType_CPIdentifier_Lock_RemainingLockTime,285,Variable @@ -256,7 +250,6 @@ ServerCommunicationFFH1DeviceType_GroupIdentifier_UIElement,330,Variable ServerCommunicationFFH1DeviceType_Identification,331,Object ServerCommunicationFFH1DeviceType_Identification_UIElement,332,Variable ServerCommunicationFFH1DeviceType_Lock,333,Object -ServerCommunicationFFH1DeviceType_Lock_Locked,334,Variable ServerCommunicationFFH1DeviceType_Lock_LockingClient,335,Variable ServerCommunicationFFH1DeviceType_Lock_LockingUser,336,Variable ServerCommunicationFFH1DeviceType_Lock_RemainingLockTime,337,Variable @@ -295,7 +288,6 @@ ServerCommunicationFFH1DeviceType_CPIdentifier_MethodSet_MethodIdentifier,369,Me ServerCommunicationFFH1DeviceType_CPIdentifier_Identification,370,Object ServerCommunicationFFH1DeviceType_CPIdentifier_Identification_UIElement,371,Variable ServerCommunicationFFH1DeviceType_CPIdentifier_Lock,372,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_Locked,373,Variable ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_LockingClient,374,Variable ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_LockingUser,375,Variable ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_RemainingLockTime,376,Variable @@ -331,7 +323,6 @@ ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_MethodIdentifier,405 ServerCommunicationFFH1DeviceType_ServiceProvider_Identification,406,Object ServerCommunicationFFH1DeviceType_ServiceProvider_Identification_UIElement,407,Variable ServerCommunicationFFH1DeviceType_ServiceProvider_Lock,408,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_Locked,409,Variable ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_LockingClient,410,Variable ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_LockingUser,411,Variable ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_RemainingLockTime,412,Variable @@ -384,7 +375,6 @@ ServerCommunicationFFHSEDeviceType_GroupIdentifier_UIElement,458,Variable ServerCommunicationFFHSEDeviceType_Identification,459,Object ServerCommunicationFFHSEDeviceType_Identification_UIElement,460,Variable ServerCommunicationFFHSEDeviceType_Lock,461,Object -ServerCommunicationFFHSEDeviceType_Lock_Locked,462,Variable ServerCommunicationFFHSEDeviceType_Lock_LockingClient,463,Variable ServerCommunicationFFHSEDeviceType_Lock_LockingUser,464,Variable ServerCommunicationFFHSEDeviceType_Lock_RemainingLockTime,465,Variable @@ -423,7 +413,6 @@ ServerCommunicationFFHSEDeviceType_CPIdentifier_MethodSet_MethodIdentifier,497,M ServerCommunicationFFHSEDeviceType_CPIdentifier_Identification,498,Object ServerCommunicationFFHSEDeviceType_CPIdentifier_Identification_UIElement,499,Variable ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock,500,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_Locked,501,Variable ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_LockingClient,502,Variable ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_LockingUser,503,Variable ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_RemainingLockTime,504,Variable @@ -459,7 +448,6 @@ ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_MethodIdentifier,53 ServerCommunicationFFHSEDeviceType_ServiceProvider_Identification,534,Object ServerCommunicationFFHSEDeviceType_ServiceProvider_Identification_UIElement,535,Variable ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock,536,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_Locked,537,Variable ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_LockingClient,538,Variable ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_LockingUser,539,Variable ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_RemainingLockTime,540,Variable @@ -512,7 +500,6 @@ ServerCommunicationPROFIBUSDeviceType_GroupIdentifier_UIElement,586,Variable ServerCommunicationPROFIBUSDeviceType_Identification,587,Object ServerCommunicationPROFIBUSDeviceType_Identification_UIElement,588,Variable ServerCommunicationPROFIBUSDeviceType_Lock,589,Object -ServerCommunicationPROFIBUSDeviceType_Lock_Locked,590,Variable ServerCommunicationPROFIBUSDeviceType_Lock_LockingClient,591,Variable ServerCommunicationPROFIBUSDeviceType_Lock_LockingUser,592,Variable ServerCommunicationPROFIBUSDeviceType_Lock_RemainingLockTime,593,Variable @@ -551,7 +538,6 @@ ServerCommunicationPROFIBUSDeviceType_CPIdentifier_MethodSet_MethodIdentifier,62 ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Identification,626,Object ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Identification_UIElement,627,Variable ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock,628,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_Locked,629,Variable ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_LockingClient,630,Variable ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_LockingUser,631,Variable ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_RemainingLockTime,632,Variable @@ -587,7 +573,6 @@ ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_MethodIdentifier ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Identification,662,Object ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Identification_UIElement,663,Variable ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock,664,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_Locked,665,Variable ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_LockingClient,666,Variable ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_LockingUser,667,Variable ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_RemainingLockTime,668,Variable @@ -637,7 +622,6 @@ ServerCommunicationPROFINETDeviceType_GroupIdentifier_UIElement,711,Variable ServerCommunicationPROFINETDeviceType_Identification,712,Object ServerCommunicationPROFINETDeviceType_Identification_UIElement,713,Variable ServerCommunicationPROFINETDeviceType_Lock,714,Object -ServerCommunicationPROFINETDeviceType_Lock_Locked,715,Variable ServerCommunicationPROFINETDeviceType_Lock_LockingClient,716,Variable ServerCommunicationPROFINETDeviceType_Lock_LockingUser,717,Variable ServerCommunicationPROFINETDeviceType_Lock_RemainingLockTime,718,Variable @@ -676,7 +660,6 @@ ServerCommunicationPROFINETDeviceType_CPIdentifier_MethodSet_MethodIdentifier,75 ServerCommunicationPROFINETDeviceType_CPIdentifier_Identification,751,Object ServerCommunicationPROFINETDeviceType_CPIdentifier_Identification_UIElement,752,Variable ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock,753,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_Locked,754,Variable ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_LockingClient,755,Variable ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_LockingUser,756,Variable ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_RemainingLockTime,757,Variable @@ -712,7 +695,6 @@ ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_MethodIdentifier ServerCommunicationPROFINETDeviceType_ServiceProvider_Identification,787,Object ServerCommunicationPROFINETDeviceType_ServiceProvider_Identification_UIElement,788,Variable ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock,789,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_Locked,790,Variable ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_LockingClient,791,Variable ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_LockingUser,792,Variable ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_RemainingLockTime,793,Variable @@ -762,7 +744,6 @@ ServerCommunicationHARType_GroupIdentifier_UIElement,836,Variable ServerCommunicationHARType_Identification,837,Object ServerCommunicationHARType_Identification_UIElement,838,Variable ServerCommunicationHARType_Lock,839,Object -ServerCommunicationHARType_Lock_Locked,840,Variable ServerCommunicationHARType_Lock_LockingClient,841,Variable ServerCommunicationHARType_Lock_LockingUser,842,Variable ServerCommunicationHARType_Lock_RemainingLockTime,843,Variable @@ -801,7 +782,6 @@ ServerCommunicationHARType_CPIdentifier_MethodSet_MethodIdentifier,875,Method ServerCommunicationHARType_CPIdentifier_Identification,876,Object ServerCommunicationHARType_CPIdentifier_Identification_UIElement,877,Variable ServerCommunicationHARType_CPIdentifier_Lock,878,Object -ServerCommunicationHARType_CPIdentifier_Lock_Locked,879,Variable ServerCommunicationHARType_CPIdentifier_Lock_LockingClient,880,Variable ServerCommunicationHARType_CPIdentifier_Lock_LockingUser,881,Variable ServerCommunicationHARType_CPIdentifier_Lock_RemainingLockTime,882,Variable @@ -837,7 +817,6 @@ ServerCommunicationHARType_ServiceProvider_MethodSet_MethodIdentifier,911,Method ServerCommunicationHARType_ServiceProvider_Identification,912,Object ServerCommunicationHARType_ServiceProvider_Identification_UIElement,913,Variable ServerCommunicationHARType_ServiceProvider_Lock,914,Object -ServerCommunicationHARType_ServiceProvider_Lock_Locked,915,Variable ServerCommunicationHARType_ServiceProvider_Lock_LockingClient,916,Variable ServerCommunicationHARType_ServiceProvider_Lock_LockingUser,917,Variable ServerCommunicationHARType_ServiceProvider_Lock_RemainingLockTime,918,Variable @@ -929,7 +908,6 @@ ServerCommunicationFFH1ServiceType_GroupIdentifier_UIElement,1003,Variable ServerCommunicationFFH1ServiceType_Identification,1004,Object ServerCommunicationFFH1ServiceType_Identification_UIElement,1005,Variable ServerCommunicationFFH1ServiceType_Lock,1006,Object -ServerCommunicationFFH1ServiceType_Lock_Locked,1007,Variable ServerCommunicationFFH1ServiceType_Lock_LockingClient,1008,Variable ServerCommunicationFFH1ServiceType_Lock_LockingUser,1009,Variable ServerCommunicationFFH1ServiceType_Lock_RemainingLockTime,1010,Variable @@ -968,7 +946,6 @@ ServerCommunicationFFH1ServiceType_CPIdentifier_MethodSet_MethodIdentifier,1042, ServerCommunicationFFH1ServiceType_CPIdentifier_Identification,1043,Object ServerCommunicationFFH1ServiceType_CPIdentifier_Identification_UIElement,1044,Variable ServerCommunicationFFH1ServiceType_CPIdentifier_Lock,1045,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_Locked,1046,Variable ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_LockingClient,1047,Variable ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_LockingUser,1048,Variable ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_RemainingLockTime,1049,Variable @@ -1005,7 +982,6 @@ ServerCommunicationFFHSEServiceType_GroupIdentifier_UIElement,1079,Variable ServerCommunicationFFHSEServiceType_Identification,1080,Object ServerCommunicationFFHSEServiceType_Identification_UIElement,1081,Variable ServerCommunicationFFHSEServiceType_Lock,1082,Object -ServerCommunicationFFHSEServiceType_Lock_Locked,1083,Variable ServerCommunicationFFHSEServiceType_Lock_LockingClient,1084,Variable ServerCommunicationFFHSEServiceType_Lock_LockingUser,1085,Variable ServerCommunicationFFHSEServiceType_Lock_RemainingLockTime,1086,Variable @@ -1044,7 +1020,6 @@ ServerCommunicationFFHSEServiceType_CPIdentifier_MethodSet_MethodIdentifier,1118 ServerCommunicationFFHSEServiceType_CPIdentifier_Identification,1119,Object ServerCommunicationFFHSEServiceType_CPIdentifier_Identification_UIElement,1120,Variable ServerCommunicationFFHSEServiceType_CPIdentifier_Lock,1121,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_Locked,1122,Variable ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_LockingClient,1123,Variable ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_LockingUser,1124,Variable ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_RemainingLockTime,1125,Variable @@ -1081,7 +1056,6 @@ ServerCommunicationPROFIBUSServiceType_GroupIdentifier_UIElement,1155,Variable ServerCommunicationPROFIBUSServiceType_Identification,1156,Object ServerCommunicationPROFIBUSServiceType_Identification_UIElement,1157,Variable ServerCommunicationPROFIBUSServiceType_Lock,1158,Object -ServerCommunicationPROFIBUSServiceType_Lock_Locked,1159,Variable ServerCommunicationPROFIBUSServiceType_Lock_LockingClient,1160,Variable ServerCommunicationPROFIBUSServiceType_Lock_LockingUser,1161,Variable ServerCommunicationPROFIBUSServiceType_Lock_RemainingLockTime,1162,Variable @@ -1120,7 +1094,6 @@ ServerCommunicationPROFIBUSServiceType_CPIdentifier_MethodSet_MethodIdentifier,1 ServerCommunicationPROFIBUSServiceType_CPIdentifier_Identification,1195,Object ServerCommunicationPROFIBUSServiceType_CPIdentifier_Identification_UIElement,1196,Variable ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock,1197,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_Locked,1198,Variable ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_LockingClient,1199,Variable ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_LockingUser,1200,Variable ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_RemainingLockTime,1201,Variable @@ -1154,7 +1127,6 @@ ServerCommunicationPROFINETServiceType_GroupIdentifier_UIElement,1228,Variable ServerCommunicationPROFINETServiceType_Identification,1229,Object ServerCommunicationPROFINETServiceType_Identification_UIElement,1230,Variable ServerCommunicationPROFINETServiceType_Lock,1231,Object -ServerCommunicationPROFINETServiceType_Lock_Locked,1232,Variable ServerCommunicationPROFINETServiceType_Lock_LockingClient,1233,Variable ServerCommunicationPROFINETServiceType_Lock_LockingUser,1234,Variable ServerCommunicationPROFINETServiceType_Lock_RemainingLockTime,1235,Variable @@ -1193,7 +1165,6 @@ ServerCommunicationPROFINETServiceType_CPIdentifier_MethodSet_MethodIdentifier,1 ServerCommunicationPROFINETServiceType_CPIdentifier_Identification,1268,Object ServerCommunicationPROFINETServiceType_CPIdentifier_Identification_UIElement,1269,Variable ServerCommunicationPROFINETServiceType_CPIdentifier_Lock,1270,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_Locked,1271,Variable ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_LockingClient,1272,Variable ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_LockingUser,1273,Variable ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_RemainingLockTime,1274,Variable @@ -1227,7 +1198,6 @@ ServerCommunicationHARTServiceType_GroupIdentifier_UIElement,1301,Variable ServerCommunicationHARTServiceType_Identification,1302,Object ServerCommunicationHARTServiceType_Identification_UIElement,1303,Variable ServerCommunicationHARTServiceType_Lock,1304,Object -ServerCommunicationHARTServiceType_Lock_Locked,1305,Variable ServerCommunicationHARTServiceType_Lock_LockingClient,1306,Variable ServerCommunicationHARTServiceType_Lock_LockingUser,1307,Variable ServerCommunicationHARTServiceType_Lock_RemainingLockTime,1308,Variable @@ -1266,7 +1236,6 @@ ServerCommunicationHARTServiceType_CPIdentifier_MethodSet_MethodIdentifier,1340, ServerCommunicationHARTServiceType_CPIdentifier_Identification,1341,Object ServerCommunicationHARTServiceType_CPIdentifier_Identification_UIElement,1342,Variable ServerCommunicationHARTServiceType_CPIdentifier_Lock,1343,Object -ServerCommunicationHARTServiceType_CPIdentifier_Lock_Locked,1344,Variable ServerCommunicationHARTServiceType_CPIdentifier_Lock_LockingClient,1345,Variable ServerCommunicationHARTServiceType_CPIdentifier_Lock_LockingUser,1346,Variable ServerCommunicationHARTServiceType_CPIdentifier_Lock_RemainingLockTime,1347,Variable @@ -1312,7 +1281,6 @@ ConnectionPoint_Foundation_H1_GroupIdentifier_UIElement,1386,Variable ConnectionPoint_Foundation_H1_Identification,1387,Object ConnectionPoint_Foundation_H1_Identification_UIElement,1388,Variable ConnectionPoint_Foundation_H1_Lock,1389,Object -ConnectionPoint_Foundation_H1_Lock_Locked,1390,Variable ConnectionPoint_Foundation_H1_Lock_LockingClient,1391,Variable ConnectionPoint_Foundation_H1_Lock_LockingUser,1392,Variable ConnectionPoint_Foundation_H1_Lock_RemainingLockTime,1393,Variable @@ -1327,10 +1295,8 @@ ConnectionPoint_Foundation_H1_Lock_BreakLock,1401,Method ConnectionPoint_Foundation_H1_Lock_BreakLock_OutputArguments,1402,Variable ConnectionPoint_Foundation_H1_NetworkAddress,1403,Object ConnectionPoint_Foundation_H1_NetworkAddress_UIElement,1404,Variable -ConnectionPoint_Foundation_H1_ProfileId,1405,Object ConnectionPoint_Foundation_H1_NetworkIdentifier,1406,Object ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock,1407,Object -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_Locked,1408,Variable ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_LockingClient,1409,Variable ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_LockingUser,1410,Variable ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_RemainingLockTime,1411,Variable @@ -1356,7 +1322,6 @@ ConnectionPoint_Foundation_HSE_GroupIdentifier_UIElement,1430,Variable ConnectionPoint_Foundation_HSE_Identification,1431,Object ConnectionPoint_Foundation_HSE_Identification_UIElement,1432,Variable ConnectionPoint_Foundation_HSE_Lock,1433,Object -ConnectionPoint_Foundation_HSE_Lock_Locked,1434,Variable ConnectionPoint_Foundation_HSE_Lock_LockingClient,1435,Variable ConnectionPoint_Foundation_HSE_Lock_LockingUser,1436,Variable ConnectionPoint_Foundation_HSE_Lock_RemainingLockTime,1437,Variable @@ -1371,10 +1336,8 @@ ConnectionPoint_Foundation_HSE_Lock_BreakLock,1445,Method ConnectionPoint_Foundation_HSE_Lock_BreakLock_OutputArguments,1446,Variable ConnectionPoint_Foundation_HSE_NetworkAddress,1447,Object ConnectionPoint_Foundation_HSE_NetworkAddress_UIElement,1448,Variable -ConnectionPoint_Foundation_HSE_ProfileId,1449,Object ConnectionPoint_Foundation_HSE_NetworkIdentifier,1450,Object ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock,1451,Object -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_Locked,1452,Variable ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_LockingClient,1453,Variable ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_LockingUser,1454,Variable ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_RemainingLockTime,1455,Variable @@ -1399,7 +1362,6 @@ ConnectionPoint_Profibus_DP_GroupIdentifier_UIElement,1473,Variable ConnectionPoint_Profibus_DP_Identification,1474,Object ConnectionPoint_Profibus_DP_Identification_UIElement,1475,Variable ConnectionPoint_Profibus_DP_Lock,1476,Object -ConnectionPoint_Profibus_DP_Lock_Locked,1477,Variable ConnectionPoint_Profibus_DP_Lock_LockingClient,1478,Variable ConnectionPoint_Profibus_DP_Lock_LockingUser,1479,Variable ConnectionPoint_Profibus_DP_Lock_RemainingLockTime,1480,Variable @@ -1414,10 +1376,8 @@ ConnectionPoint_Profibus_DP_Lock_BreakLock,1488,Method ConnectionPoint_Profibus_DP_Lock_BreakLock_OutputArguments,1489,Variable ConnectionPoint_Profibus_DP_NetworkAddress,1490,Object ConnectionPoint_Profibus_DP_NetworkAddress_UIElement,1491,Variable -ConnectionPoint_Profibus_DP_ProfileId,1492,Object ConnectionPoint_Profibus_DP_NetworkIdentifier,1493,Object ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock,1494,Object -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_Locked,1495,Variable ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_LockingClient,1496,Variable ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_LockingUser,1497,Variable ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_RemainingLockTime,1498,Variable @@ -1441,7 +1401,6 @@ ConnectionPoint_Profinet_IO_GroupIdentifier_UIElement,1515,Variable ConnectionPoint_Profinet_IO_Identification,1516,Object ConnectionPoint_Profinet_IO_Identification_UIElement,1517,Variable ConnectionPoint_Profinet_IO_Lock,1518,Object -ConnectionPoint_Profinet_IO_Lock_Locked,1519,Variable ConnectionPoint_Profinet_IO_Lock_LockingClient,1520,Variable ConnectionPoint_Profinet_IO_Lock_LockingUser,1521,Variable ConnectionPoint_Profinet_IO_Lock_RemainingLockTime,1522,Variable @@ -1456,10 +1415,8 @@ ConnectionPoint_Profinet_IO_Lock_BreakLock,1530,Method ConnectionPoint_Profinet_IO_Lock_BreakLock_OutputArguments,1531,Variable ConnectionPoint_Profinet_IO_NetworkAddress,1532,Object ConnectionPoint_Profinet_IO_NetworkAddress_UIElement,1533,Variable -ConnectionPoint_Profinet_IO_ProfileId,1534,Object ConnectionPoint_Profinet_IO_NetworkIdentifier,1535,Object ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock,1536,Object -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_Locked,1537,Variable ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_LockingClient,1538,Variable ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_LockingUser,1539,Variable ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_RemainingLockTime,1540,Variable @@ -1486,7 +1443,6 @@ ConnectionPoint_HART_TP5_GroupIdentifier_UIElement,1560,Variable ConnectionPoint_HART_TP5_Identification,1561,Object ConnectionPoint_HART_TP5_Identification_UIElement,1562,Variable ConnectionPoint_HART_TP5_Lock,1563,Object -ConnectionPoint_HART_TP5_Lock_Locked,1564,Variable ConnectionPoint_HART_TP5_Lock_LockingClient,1565,Variable ConnectionPoint_HART_TP5_Lock_LockingUser,1566,Variable ConnectionPoint_HART_TP5_Lock_RemainingLockTime,1567,Variable @@ -1501,10 +1457,8 @@ ConnectionPoint_HART_TP5_Lock_BreakLock,1575,Method ConnectionPoint_HART_TP5_Lock_BreakLock_OutputArguments,1576,Variable ConnectionPoint_HART_TP5_NetworkAddress,1577,Object ConnectionPoint_HART_TP5_NetworkAddress_UIElement,1578,Variable -ConnectionPoint_HART_TP5_ProfileId,1579,Object ConnectionPoint_HART_TP5_NetworkIdentifier,1580,Object ConnectionPoint_HART_TP5_NetworkIdentifier_Lock,1581,Object -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_Locked,1582,Variable ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_LockingClient,1583,Variable ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_LockingUser,1584,Variable ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_RemainingLockTime,1585,Variable @@ -1533,7 +1487,6 @@ ConnectionPoint_HART_TP6_GroupIdentifier_UIElement,1607,Variable ConnectionPoint_HART_TP6_Identification,1608,Object ConnectionPoint_HART_TP6_Identification_UIElement,1609,Variable ConnectionPoint_HART_TP6_Lock,1610,Object -ConnectionPoint_HART_TP6_Lock_Locked,1611,Variable ConnectionPoint_HART_TP6_Lock_LockingClient,1612,Variable ConnectionPoint_HART_TP6_Lock_LockingUser,1613,Variable ConnectionPoint_HART_TP6_Lock_RemainingLockTime,1614,Variable @@ -1548,10 +1501,8 @@ ConnectionPoint_HART_TP6_Lock_BreakLock,1622,Method ConnectionPoint_HART_TP6_Lock_BreakLock_OutputArguments,1623,Variable ConnectionPoint_HART_TP6_NetworkAddress,1624,Object ConnectionPoint_HART_TP6_NetworkAddress_UIElement,1625,Variable -ConnectionPoint_HART_TP6_ProfileId,1626,Object ConnectionPoint_HART_TP6_NetworkIdentifier,1627,Object ConnectionPoint_HART_TP6_NetworkIdentifier_Lock,1628,Object -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_Locked,1629,Variable ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_LockingClient,1630,Variable ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_LockingUser,1631,Variable ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_RemainingLockTime,1632,Variable @@ -1580,7 +1531,6 @@ ConnectionPoint_HART_TP7_GroupIdentifier_UIElement,1654,Variable ConnectionPoint_HART_TP7_Identification,1655,Object ConnectionPoint_HART_TP7_Identification_UIElement,1656,Variable ConnectionPoint_HART_TP7_Lock,1657,Object -ConnectionPoint_HART_TP7_Lock_Locked,1658,Variable ConnectionPoint_HART_TP7_Lock_LockingClient,1659,Variable ConnectionPoint_HART_TP7_Lock_LockingUser,1660,Variable ConnectionPoint_HART_TP7_Lock_RemainingLockTime,1661,Variable @@ -1595,10 +1545,8 @@ ConnectionPoint_HART_TP7_Lock_BreakLock,1669,Method ConnectionPoint_HART_TP7_Lock_BreakLock_OutputArguments,1670,Variable ConnectionPoint_HART_TP7_NetworkAddress,1671,Object ConnectionPoint_HART_TP7_NetworkAddress_UIElement,1672,Variable -ConnectionPoint_HART_TP7_ProfileId,1673,Object ConnectionPoint_HART_TP7_NetworkIdentifier,1674,Object ConnectionPoint_HART_TP7_NetworkIdentifier_Lock,1675,Object -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_Locked,1676,Variable ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_LockingClient,1677,Variable ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_LockingUser,1678,Variable ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_RemainingLockTime,1679,Variable @@ -1627,7 +1575,6 @@ ConnectionPoint_ISA100_Wireless_GroupIdentifier_UIElement,1701,Variable ConnectionPoint_ISA100_Wireless_Identification,1702,Object ConnectionPoint_ISA100_Wireless_Identification_UIElement,1703,Variable ConnectionPoint_ISA100_Wireless_Lock,1704,Object -ConnectionPoint_ISA100_Wireless_Lock_Locked,1705,Variable ConnectionPoint_ISA100_Wireless_Lock_LockingClient,1706,Variable ConnectionPoint_ISA100_Wireless_Lock_LockingUser,1707,Variable ConnectionPoint_ISA100_Wireless_Lock_RemainingLockTime,1708,Variable @@ -1642,10 +1589,8 @@ ConnectionPoint_ISA100_Wireless_Lock_BreakLock,1716,Method ConnectionPoint_ISA100_Wireless_Lock_BreakLock_OutputArguments,1717,Variable ConnectionPoint_ISA100_Wireless_NetworkAddress,1718,Object ConnectionPoint_ISA100_Wireless_NetworkAddress_UIElement,1719,Variable -ConnectionPoint_ISA100_Wireless_ProfileId,1720,Object ConnectionPoint_ISA100_Wireless_NetworkIdentifier,1721,Object ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock,1722,Object -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_Locked,1723,Variable ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_LockingClient,1724,Variable ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_LockingUser,1725,Variable ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_RemainingLockTime,1726,Variable @@ -1674,7 +1619,6 @@ GenericConnectionPoint_GroupIdentifier_UIElement,1748,Variable GenericConnectionPoint_Identification,1749,Object GenericConnectionPoint_Identification_UIElement,1750,Variable GenericConnectionPoint_Lock,1751,Object -GenericConnectionPoint_Lock_Locked,1752,Variable GenericConnectionPoint_Lock_LockingClient,1753,Variable GenericConnectionPoint_Lock_LockingUser,1754,Variable GenericConnectionPoint_Lock_RemainingLockTime,1755,Variable @@ -1689,10 +1633,8 @@ GenericConnectionPoint_Lock_BreakLock,1763,Method GenericConnectionPoint_Lock_BreakLock_OutputArguments,1764,Variable GenericConnectionPoint_NetworkAddress,1765,Object GenericConnectionPoint_NetworkAddress_UIElement,1766,Variable -GenericConnectionPoint_ProfileId,1767,Object GenericConnectionPoint_NetworkIdentifier,1768,Object GenericConnectionPoint_NetworkIdentifier_Lock,1769,Object -GenericConnectionPoint_NetworkIdentifier_Lock_Locked,1770,Variable GenericConnectionPoint_NetworkIdentifier_Lock_LockingClient,1771,Variable GenericConnectionPoint_NetworkIdentifier_Lock_LockingUser,1772,Variable GenericConnectionPoint_NetworkIdentifier_Lock_RemainingLockTime,1773,Variable @@ -1720,7 +1662,6 @@ ServerCommunicationISA100_WirelessDeviceType_GroupIdentifier_UIElement,1794,Vari ServerCommunicationISA100_WirelessDeviceType_Identification,1795,Object ServerCommunicationISA100_WirelessDeviceType_Identification_UIElement,1796,Variable ServerCommunicationISA100_WirelessDeviceType_Lock,1797,Object -ServerCommunicationISA100_WirelessDeviceType_Lock_Locked,1798,Variable ServerCommunicationISA100_WirelessDeviceType_Lock_LockingClient,1799,Variable ServerCommunicationISA100_WirelessDeviceType_Lock_LockingUser,1800,Variable ServerCommunicationISA100_WirelessDeviceType_Lock_RemainingLockTime,1801,Variable @@ -1759,7 +1700,6 @@ ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_MethodSet_MethodIdenti ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Identification,1834,Object ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Identification_UIElement,1835,Variable ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock,1836,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_Locked,1837,Variable ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_LockingClient,1838,Variable ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_LockingUser,1839,Variable ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_RemainingLockTime,1840,Variable @@ -1792,7 +1732,6 @@ ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_MethodIde ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Identification,1867,Object ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Identification_UIElement,1868,Variable ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock,1869,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_Locked,1870,Variable ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_LockingClient,1871,Variable ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_LockingUser,1872,Variable ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_RemainingLockTime,1873,Variable @@ -1845,7 +1784,6 @@ ServerCommunicationGENERICDeviceType_GroupIdentifier_UIElement,1919,Variable ServerCommunicationGENERICDeviceType_Identification,1920,Object ServerCommunicationGENERICDeviceType_Identification_UIElement,1921,Variable ServerCommunicationGENERICDeviceType_Lock,1922,Object -ServerCommunicationGENERICDeviceType_Lock_Locked,1923,Variable ServerCommunicationGENERICDeviceType_Lock_LockingClient,1924,Variable ServerCommunicationGENERICDeviceType_Lock_LockingUser,1925,Variable ServerCommunicationGENERICDeviceType_Lock_RemainingLockTime,1926,Variable @@ -1884,7 +1822,6 @@ ServerCommunicationGENERICDeviceType_CPIdentifier_MethodSet_MethodIdentifier,195 ServerCommunicationGENERICDeviceType_CPIdentifier_Identification,1959,Object ServerCommunicationGENERICDeviceType_CPIdentifier_Identification_UIElement,1960,Variable ServerCommunicationGENERICDeviceType_CPIdentifier_Lock,1961,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_Locked,1962,Variable ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_LockingClient,1963,Variable ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_LockingUser,1964,Variable ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_RemainingLockTime,1965,Variable @@ -1921,7 +1858,6 @@ ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_MethodIdentifier, ServerCommunicationGENERICDeviceType_ServiceProvider_Identification,1996,Object ServerCommunicationGENERICDeviceType_ServiceProvider_Identification_UIElement,1997,Variable ServerCommunicationGENERICDeviceType_ServiceProvider_Lock,1998,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_Locked,1999,Variable ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_LockingClient,2000,Variable ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_LockingUser,2001,Variable ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_RemainingLockTime,2002,Variable @@ -1989,7 +1925,6 @@ ServerCommunicationISA100_WirelessServiceType_GroupIdentifier_UIElement,2063,Var ServerCommunicationISA100_WirelessServiceType_Identification,2064,Object ServerCommunicationISA100_WirelessServiceType_Identification_UIElement,2065,Variable ServerCommunicationISA100_WirelessServiceType_Lock,2066,Object -ServerCommunicationISA100_WirelessServiceType_Lock_Locked,2067,Variable ServerCommunicationISA100_WirelessServiceType_Lock_LockingClient,2068,Variable ServerCommunicationISA100_WirelessServiceType_Lock_LockingUser,2069,Variable ServerCommunicationISA100_WirelessServiceType_Lock_RemainingLockTime,2070,Variable @@ -2028,7 +1963,6 @@ ServerCommunicationISA100_WirelessServiceType_CPIdentifier_MethodSet_MethodIdent ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Identification,2103,Object ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Identification_UIElement,2104,Variable ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock,2105,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_Locked,2106,Variable ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_LockingClient,2107,Variable ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_LockingUser,2108,Variable ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_RemainingLockTime,2109,Variable @@ -2065,7 +1999,6 @@ ServerCommunicationGENERICServiceType_GroupIdentifier_UIElement,2139,Variable ServerCommunicationGENERICServiceType_Identification,2140,Object ServerCommunicationGENERICServiceType_Identification_UIElement,2141,Variable ServerCommunicationGENERICServiceType_Lock,2142,Object -ServerCommunicationGENERICServiceType_Lock_Locked,2143,Variable ServerCommunicationGENERICServiceType_Lock_LockingClient,2144,Variable ServerCommunicationGENERICServiceType_Lock_LockingUser,2145,Variable ServerCommunicationGENERICServiceType_Lock_RemainingLockTime,2146,Variable @@ -2104,7 +2037,6 @@ ServerCommunicationGENERICServiceType_CPIdentifier_MethodSet_MethodIdentifier,21 ServerCommunicationGENERICServiceType_CPIdentifier_Identification,2179,Object ServerCommunicationGENERICServiceType_CPIdentifier_Identification_UIElement,2180,Variable ServerCommunicationGENERICServiceType_CPIdentifier_Lock,2181,Object -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_Locked,2182,Variable ServerCommunicationGENERICServiceType_CPIdentifier_Lock_LockingClient,2183,Variable ServerCommunicationGENERICServiceType_CPIdentifier_Lock_LockingUser,2184,Variable ServerCommunicationGENERICServiceType_CPIdentifier_Lock_RemainingLockTime,2185,Variable @@ -2153,3 +2085,200 @@ ServerCommunicationPROFINETDeviceType_ListOfCommunicationProfiles,15005,Variable ServerCommunicationHARType_ListOfCommunicationProfiles,15006,Variable ServerCommunicationISA100_WirelessDeviceType_ListOfCommunicationProfiles,15007,Variable ServerCommunicationGENERICDeviceType_ListOfCommunicationProfiles,15008,Variable +OpcUaFdi7NamespaceMetadata,15009,Object +OpcUaFdi7NamespaceMetadata_NamespaceUri,15010,Variable +OpcUaFdi7NamespaceMetadata_NamespaceVersion,15011,Variable +OpcUaFdi7NamespaceMetadata_NamespacePublicationDate,15012,Variable +OpcUaFdi7NamespaceMetadata_IsNamespaceSubset,15013,Variable +OpcUaFdi7NamespaceMetadata_StaticNodeIdTypes,15014,Variable +OpcUaFdi7NamespaceMetadata_StaticNumericNodeIdRange,15015,Variable +OpcUaFdi7NamespaceMetadata_StaticStringNodeIdPattern,15016,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile,15017,Object +OpcUaFdi7NamespaceMetadata_NamespaceFile_Size,15018,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Writable,15019,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_UserWritable,15020,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_OpenCount,15021,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_MimeType,15022,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Open,15023,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_Open_InputArguments,15024,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Open_OutputArguments,15025,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Close,15026,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_Close_InputArguments,15027,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Read,15028,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_Read_InputArguments,15029,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Read_OutputArguments,15030,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_Write,15031,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_Write_InputArguments,15032,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_GetPosition,15033,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15034,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15035,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_SetPosition,15036,Method +OpcUaFdi7NamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15037,Variable +OpcUaFdi7NamespaceMetadata_NamespaceFile_ExportNamespace,15038,Method +OpcUaFdi7NamespaceMetadata_DefaultRolePermissions,15039,Variable +OpcUaFdi7NamespaceMetadata_DefaultUserRolePermissions,15040,Variable +OpcUaFdi7NamespaceMetadata_DefaultAccessRestrictions,15041,Variable +ConnectionPoint_Foundation_H1_Lock_DefaultInstanceBrowseName,15042,Variable +ConnectionPoint_Foundation_H1_ProfileIdentifier,15043,Object +ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15044,Variable +ConnectionPoint_Foundation_HSE_Lock_DefaultInstanceBrowseName,15045,Variable +ConnectionPoint_Foundation_HSE_ProfileIdentifier,15046,Object +ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15047,Variable +ConnectionPoint_Profibus_DP_Lock_DefaultInstanceBrowseName,15048,Variable +ConnectionPoint_Profibus_DP_ProfileIdentifier,15049,Object +ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15050,Variable +ConnectionPoint_Profinet_IO_Lock_DefaultInstanceBrowseName,15051,Variable +ConnectionPoint_Profinet_IO_ProfileIdentifier,15052,Object +ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15053,Variable +ConnectionPoint_HART_TP5_Lock_DefaultInstanceBrowseName,15054,Variable +ConnectionPoint_HART_TP5_ProfileIdentifier,15055,Object +ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15056,Variable +ConnectionPoint_HART_TP6_Lock_DefaultInstanceBrowseName,15057,Variable +ConnectionPoint_HART_TP6_ProfileIdentifier,15058,Object +ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15059,Variable +ConnectionPoint_HART_TP7_Lock_DefaultInstanceBrowseName,15060,Variable +ConnectionPoint_HART_TP7_ProfileIdentifier,15061,Object +ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15062,Variable +ConnectionPoint_ISA100_Wireless_Lock_DefaultInstanceBrowseName,15063,Variable +ConnectionPoint_ISA100_Wireless_ProfileIdentifier,15064,Object +ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15065,Variable +GenericConnectionPoint_Lock_DefaultInstanceBrowseName,15066,Variable +GenericConnectionPoint_ProfileIdentifier,15067,Object +GenericConnectionPoint_NetworkIdentifier_Lock_DefaultInstanceBrowseName,15068,Variable +CommunicationServerType_Lock_DefaultInstanceBrowseName,15069,Variable +CommunicationServerType_ManufacturerUri,15070,Variable +CommunicationServerType_ProductCode,15071,Variable +CommunicationServerType_AssetId,15072,Variable +CommunicationServerType_ComponentName,15073,Variable +CommunicationServerType_CPIdentifier_Lock_DefaultInstanceBrowseName,15074,Variable +ServerCommunicationDeviceType_Lock_DefaultInstanceBrowseName,15075,Variable +ServerCommunicationDeviceType_ManufacturerUri,15076,Variable +ServerCommunicationDeviceType_ProductCode,15077,Variable +ServerCommunicationDeviceType_AssetId,15078,Variable +ServerCommunicationDeviceType_ComponentName,15079,Variable +ServerCommunicationDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15080,Variable +ServerCommunicationFFH1DeviceType_Lock_DefaultInstanceBrowseName,15081,Variable +ServerCommunicationFFH1DeviceType_ManufacturerUri,15082,Variable +ServerCommunicationFFH1DeviceType_ProductCode,15083,Variable +ServerCommunicationFFH1DeviceType_AssetId,15084,Variable +ServerCommunicationFFH1DeviceType_ComponentName,15085,Variable +ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15086,Variable +ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15087,Variable +ServerCommunicationFFH1DeviceType_ServiceProvider_ManufacturerUri,15088,Variable +ServerCommunicationFFH1DeviceType_ServiceProvider_ProductCode,15089,Variable +ServerCommunicationFFH1DeviceType_ServiceProvider_AssetId,15090,Variable +ServerCommunicationFFH1DeviceType_ServiceProvider_ComponentName,15091,Variable +ServerCommunicationFFHSEDeviceType_Lock_DefaultInstanceBrowseName,15092,Variable +ServerCommunicationFFHSEDeviceType_ManufacturerUri,15093,Variable +ServerCommunicationFFHSEDeviceType_ProductCode,15094,Variable +ServerCommunicationFFHSEDeviceType_AssetId,15095,Variable +ServerCommunicationFFHSEDeviceType_ComponentName,15096,Variable +ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15097,Variable +ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15098,Variable +ServerCommunicationFFHSEDeviceType_ServiceProvider_ManufacturerUri,15099,Variable +ServerCommunicationFFHSEDeviceType_ServiceProvider_ProductCode,15100,Variable +ServerCommunicationFFHSEDeviceType_ServiceProvider_AssetId,15101,Variable +ServerCommunicationFFHSEDeviceType_ServiceProvider_ComponentName,15102,Variable +ServerCommunicationPROFIBUSDeviceType_Lock_DefaultInstanceBrowseName,15103,Variable +ServerCommunicationPROFIBUSDeviceType_ManufacturerUri,15104,Variable +ServerCommunicationPROFIBUSDeviceType_ProductCode,15105,Variable +ServerCommunicationPROFIBUSDeviceType_AssetId,15106,Variable +ServerCommunicationPROFIBUSDeviceType_ComponentName,15107,Variable +ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15108,Variable +ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15109,Variable +ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ManufacturerUri,15110,Variable +ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ProductCode,15111,Variable +ServerCommunicationPROFIBUSDeviceType_ServiceProvider_AssetId,15112,Variable +ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ComponentName,15113,Variable +ServerCommunicationPROFINETDeviceType_Lock_DefaultInstanceBrowseName,15114,Variable +ServerCommunicationPROFINETDeviceType_ManufacturerUri,15115,Variable +ServerCommunicationPROFINETDeviceType_ProductCode,15116,Variable +ServerCommunicationPROFINETDeviceType_AssetId,15117,Variable +ServerCommunicationPROFINETDeviceType_ComponentName,15118,Variable +ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15119,Variable +ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15120,Variable +ServerCommunicationPROFINETDeviceType_ServiceProvider_ManufacturerUri,15121,Variable +ServerCommunicationPROFINETDeviceType_ServiceProvider_ProductCode,15122,Variable +ServerCommunicationPROFINETDeviceType_ServiceProvider_AssetId,15123,Variable +ServerCommunicationPROFINETDeviceType_ServiceProvider_ComponentName,15124,Variable +ServerCommunicationHARType_Lock_DefaultInstanceBrowseName,15125,Variable +ServerCommunicationHARType_ManufacturerUri,15126,Variable +ServerCommunicationHARType_ProductCode,15127,Variable +ServerCommunicationHARType_AssetId,15128,Variable +ServerCommunicationHARType_ComponentName,15129,Variable +ServerCommunicationHARType_CPIdentifier_Lock_DefaultInstanceBrowseName,15130,Variable +ServerCommunicationHARType_ServiceProvider_Lock_DefaultInstanceBrowseName,15131,Variable +ServerCommunicationHARType_ServiceProvider_ManufacturerUri,15132,Variable +ServerCommunicationHARType_ServiceProvider_ProductCode,15133,Variable +ServerCommunicationHARType_ServiceProvider_AssetId,15134,Variable +ServerCommunicationHARType_ServiceProvider_ComponentName,15135,Variable +ServerCommunicationISA100_WirelessDeviceType_Lock_DefaultInstanceBrowseName,15136,Variable +ServerCommunicationISA100_WirelessDeviceType_ManufacturerUri,15137,Variable +ServerCommunicationISA100_WirelessDeviceType_ProductCode,15138,Variable +ServerCommunicationISA100_WirelessDeviceType_AssetId,15139,Variable +ServerCommunicationISA100_WirelessDeviceType_ComponentName,15140,Variable +ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15141,Variable +ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15142,Variable +ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ManufacturerUri,15143,Variable +ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ProductCode,15144,Variable +ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_AssetId,15145,Variable +ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ComponentName,15146,Variable +ServerCommunicationGENERICDeviceType_Lock_DefaultInstanceBrowseName,15147,Variable +ServerCommunicationGENERICDeviceType_ManufacturerUri,15148,Variable +ServerCommunicationGENERICDeviceType_ProductCode,15149,Variable +ServerCommunicationGENERICDeviceType_AssetId,15150,Variable +ServerCommunicationGENERICDeviceType_ComponentName,15151,Variable +ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15152,Variable +ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_DefaultInstanceBrowseName,15153,Variable +ServerCommunicationGENERICDeviceType_ServiceProvider_ManufacturerUri,15154,Variable +ServerCommunicationGENERICDeviceType_ServiceProvider_ProductCode,15155,Variable +ServerCommunicationGENERICDeviceType_ServiceProvider_AssetId,15156,Variable +ServerCommunicationGENERICDeviceType_ServiceProvider_ComponentName,15157,Variable +ServerCommunicationServiceType_Lock_DefaultInstanceBrowseName,15158,Variable +ServerCommunicationServiceType_ManufacturerUri,15159,Variable +ServerCommunicationServiceType_ProductCode,15160,Variable +ServerCommunicationServiceType_AssetId,15161,Variable +ServerCommunicationServiceType_ComponentName,15162,Variable +ServerCommunicationServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15163,Variable +ServerCommunicationFFH1ServiceType_Lock_DefaultInstanceBrowseName,15164,Variable +ServerCommunicationFFH1ServiceType_ManufacturerUri,15165,Variable +ServerCommunicationFFH1ServiceType_ProductCode,15166,Variable +ServerCommunicationFFH1ServiceType_AssetId,15167,Variable +ServerCommunicationFFH1ServiceType_ComponentName,15168,Variable +ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15169,Variable +ServerCommunicationFFHSEServiceType_Lock_DefaultInstanceBrowseName,15170,Variable +ServerCommunicationFFHSEServiceType_ManufacturerUri,15171,Variable +ServerCommunicationFFHSEServiceType_ProductCode,15172,Variable +ServerCommunicationFFHSEServiceType_AssetId,15173,Variable +ServerCommunicationFFHSEServiceType_ComponentName,15174,Variable +ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15175,Variable +ServerCommunicationPROFIBUSServiceType_Lock_DefaultInstanceBrowseName,15176,Variable +ServerCommunicationPROFIBUSServiceType_ManufacturerUri,15177,Variable +ServerCommunicationPROFIBUSServiceType_ProductCode,15178,Variable +ServerCommunicationPROFIBUSServiceType_AssetId,15179,Variable +ServerCommunicationPROFIBUSServiceType_ComponentName,15180,Variable +ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15181,Variable +ServerCommunicationPROFINETServiceType_Lock_DefaultInstanceBrowseName,15182,Variable +ServerCommunicationPROFINETServiceType_ManufacturerUri,15183,Variable +ServerCommunicationPROFINETServiceType_ProductCode,15184,Variable +ServerCommunicationPROFINETServiceType_AssetId,15185,Variable +ServerCommunicationPROFINETServiceType_ComponentName,15186,Variable +ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15187,Variable +ServerCommunicationHARTServiceType_Lock_DefaultInstanceBrowseName,15188,Variable +ServerCommunicationHARTServiceType_ManufacturerUri,15189,Variable +ServerCommunicationHARTServiceType_ProductCode,15190,Variable +ServerCommunicationHARTServiceType_AssetId,15191,Variable +ServerCommunicationHARTServiceType_ComponentName,15192,Variable +ServerCommunicationHARTServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15193,Variable +ServerCommunicationISA100_WirelessServiceType_Lock_DefaultInstanceBrowseName,15194,Variable +ServerCommunicationISA100_WirelessServiceType_ManufacturerUri,15195,Variable +ServerCommunicationISA100_WirelessServiceType_ProductCode,15196,Variable +ServerCommunicationISA100_WirelessServiceType_AssetId,15197,Variable +ServerCommunicationISA100_WirelessServiceType_ComponentName,15198,Variable +ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15199,Variable +ServerCommunicationGENERICServiceType_Lock_DefaultInstanceBrowseName,15200,Variable +ServerCommunicationGENERICServiceType_ManufacturerUri,15201,Variable +ServerCommunicationGENERICServiceType_ProductCode,15202,Variable +ServerCommunicationGENERICServiceType_AssetId,15203,Variable +ServerCommunicationGENERICServiceType_ComponentName,15204,Variable +ServerCommunicationGENERICServiceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15205,Variable diff --git a/ModelCompiler/Design.v104/OpcUaFdiPart7Model.xml b/ModelCompiler/Design.v104/OpcUaFdiPart7Model.xml index b1a15fe7..316f6223 100644 --- a/ModelCompiler/Design.v104/OpcUaFdiPart7Model.xml +++ b/ModelCompiler/Design.v104/OpcUaFdiPart7Model.xml @@ -9,13 +9,68 @@ TargetNamespace="http://fdi-cooperation.com/OPCUA/FDI7/" TargetXmlNamespace="http://fdi-cooperation.com/OPCUA/FDI7/" TargetNamespaceVersion="1.3" + TargetPublicationDate="2017-07-14T00:00:00Z" xmlns="http://opcfoundation.org/UA/ModelDesign.xsd"> http://fdi-cooperation.com/OPCUA/FDI7/ - http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/DI/ http://opcfoundation.org/UA/ + + + http://fdi-cooperation.com/OPCUA/FDI7/ + + + + http://fdi-cooperation.com/OPCUA/FDI7/ + + + + + 1.3 + + + + + 2017-07-14 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + ua:HasComponent + ua:Server_Namespaces + + + diff --git a/ModelCompiler/Design.v104/OpcUaGdsModel.csv b/ModelCompiler/Design.v104/OpcUaGdsModel.csv index 74d35e8d..76a8d852 100644 --- a/ModelCompiler/Design.v104/OpcUaGdsModel.csv +++ b/ModelCompiler/Design.v104/OpcUaGdsModel.csv @@ -572,3 +572,9 @@ KeyCredentialRevokedAuditEventType_ResourceUri,1092,Variable ApplicationRecordDataType_Encoding_DefaultJson,8001,Object OpcUaGds_BinarySchema_Deprecated,8002,Variable OpcUaGds_XmlSchema_Deprecated,8004,Variable +RevokeCertificateMethodType,15001,Method +RevokeCertificateMethodType_InputArguments,15002,Variable +CertificateDirectoryType_RevokeCertificate,15003,Method +CertificateDirectoryType_RevokeCertificate_InputArguments,15004,Variable +Directory_RevokeCertificate,15005,Method +Directory_RevokeCertificate_InputArguments,15006,Variable diff --git a/ModelCompiler/Design.v104/OpcUaGdsModel.xml b/ModelCompiler/Design.v104/OpcUaGdsModel.xml index ac0ada81..007aa6e1 100644 --- a/ModelCompiler/Design.v104/OpcUaGdsModel.xml +++ b/ModelCompiler/Design.v104/OpcUaGdsModel.xml @@ -9,7 +9,7 @@ xmlns:uasc="http://opcfoundation.org/UA/PushConfiguration/" TargetNamespace="http://opcfoundation.org/UA/GDS/" TargetVersion="1.04" - TargetPublicationDate="2018-02-09T00:00:00Z" + TargetPublicationDate="2019-01-15T00:00:00Z" > http://opcfoundation.org/UA/GDS/ @@ -31,7 +31,7 @@ - 2018-02-09T00:00:00Z + 2018-12-01 @@ -64,7 +64,7 @@ - ua:Organizes + ua:HasComponent ua:Server_Namespaces @@ -127,6 +127,7 @@ + @@ -226,6 +227,13 @@ + + + + + + + @@ -245,6 +253,7 @@ + @@ -293,7 +302,7 @@ - + diff --git a/ModelCompiler/Design.v104/OpcUaPLCopenModel.csv b/ModelCompiler/Design.v104/OpcUaPLCopenModel.csv index 4961094e..5f75ce6a 100644 --- a/ModelCompiler/Design.v104/OpcUaPLCopenModel.csv +++ b/ModelCompiler/Design.v104/OpcUaPLCopenModel.csv @@ -189,13 +189,8 @@ CtrlFunctionBlockType_Lock_ExitLock,7159,Method CtrlFunctionBlockType_Lock_ExitLock_OutputArguments,7160,Variable CtrlFunctionBlockType_Lock_BreakLock,7161,Method CtrlFunctionBlockType_Lock_BreakLock_OutputArguments,7162,Variable -CtrlConfigurationType_Lock_Locked,7171,Variable CtrlConfigurationType_DeviceClass,7172,Variable -CtrlResourceType_Lock_Locked,7196,Variable CtrlResourceType_DeviceClass,7197,Variable -CtrlProgramOrganizationUnitType_Lock_Locked,7221,Variable -CtrlProgramType_Lock_Locked,7222,Variable -CtrlFunctionBlockType_Lock_Locked,7223,Variable CtrlConfigurationType_GroupIdentifier,7224,Object CtrlConfigurationType_GroupIdentifier_UIElement,7225,Variable CtrlConfigurationType_CPIdentifier,7226,Object @@ -206,7 +201,6 @@ CtrlConfigurationType_CPIdentifier_MethodSet_MethodIdentifier,7230,Method CtrlConfigurationType_CPIdentifier_Identification,7231,Object CtrlConfigurationType_CPIdentifier_Identification_UIElement,7232,Variable CtrlConfigurationType_CPIdentifier_Lock,7233,Object -CtrlConfigurationType_CPIdentifier_Lock_Locked,7234,Variable CtrlConfigurationType_CPIdentifier_Lock_LockingClient,7235,Variable CtrlConfigurationType_CPIdentifier_Lock_LockingUser,7236,Variable CtrlConfigurationType_CPIdentifier_Lock_RemainingLockTime,7237,Variable @@ -231,7 +225,6 @@ CtrlResourceType_CPIdentifier_MethodSet_MethodIdentifier,7255,Method CtrlResourceType_CPIdentifier_Identification,7256,Object CtrlResourceType_CPIdentifier_Identification_UIElement,7257,Variable CtrlResourceType_CPIdentifier_Lock,7258,Object -CtrlResourceType_CPIdentifier_Lock_Locked,7259,Variable CtrlResourceType_CPIdentifier_Lock_LockingClient,7260,Variable CtrlResourceType_CPIdentifier_Lock_LockingUser,7261,Variable CtrlResourceType_CPIdentifier_Lock_RemainingLockTime,7262,Variable @@ -252,3 +245,51 @@ CtrlProgramType_GroupIdentifier,7276,Object CtrlProgramType_GroupIdentifier_UIElement,7277,Variable CtrlFunctionBlockType_GroupIdentifier,7278,Object CtrlFunctionBlockType_GroupIdentifier_UIElement,7279,Variable +OpcUaPlcNamespaceMetadata,15001,Object +OpcUaPlcNamespaceMetadata_NamespaceUri,15002,Variable +OpcUaPlcNamespaceMetadata_NamespaceVersion,15003,Variable +OpcUaPlcNamespaceMetadata_NamespacePublicationDate,15004,Variable +OpcUaPlcNamespaceMetadata_IsNamespaceSubset,15005,Variable +OpcUaPlcNamespaceMetadata_StaticNodeIdTypes,15006,Variable +OpcUaPlcNamespaceMetadata_StaticNumericNodeIdRange,15007,Variable +OpcUaPlcNamespaceMetadata_StaticStringNodeIdPattern,15008,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile,15009,Object +OpcUaPlcNamespaceMetadata_NamespaceFile_Size,15010,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Writable,15011,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_UserWritable,15012,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_OpenCount,15013,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_MimeType,15014,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Open,15015,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_Open_InputArguments,15016,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Open_OutputArguments,15017,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Close,15018,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_Close_InputArguments,15019,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Read,15020,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_Read_InputArguments,15021,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Read_OutputArguments,15022,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_Write,15023,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_Write_InputArguments,15024,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_GetPosition,15025,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_GetPosition_InputArguments,15026,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_GetPosition_OutputArguments,15027,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_SetPosition,15028,Method +OpcUaPlcNamespaceMetadata_NamespaceFile_SetPosition_InputArguments,15029,Variable +OpcUaPlcNamespaceMetadata_NamespaceFile_ExportNamespace,15030,Method +OpcUaPlcNamespaceMetadata_DefaultRolePermissions,15031,Variable +OpcUaPlcNamespaceMetadata_DefaultUserRolePermissions,15032,Variable +OpcUaPlcNamespaceMetadata_DefaultAccessRestrictions,15033,Variable +CtrlConfigurationType_Lock_DefaultInstanceBrowseName,15034,Variable +CtrlConfigurationType_ManufacturerUri,15035,Variable +CtrlConfigurationType_ProductCode,15036,Variable +CtrlConfigurationType_AssetId,15037,Variable +CtrlConfigurationType_ComponentName,15038,Variable +CtrlConfigurationType_CPIdentifier_Lock_DefaultInstanceBrowseName,15039,Variable +CtrlResourceType_Lock_DefaultInstanceBrowseName,15040,Variable +CtrlResourceType_ManufacturerUri,15041,Variable +CtrlResourceType_ProductCode,15042,Variable +CtrlResourceType_AssetId,15043,Variable +CtrlResourceType_ComponentName,15044,Variable +CtrlResourceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15045,Variable +CtrlProgramOrganizationUnitType_Lock_DefaultInstanceBrowseName,15046,Variable +CtrlProgramType_Lock_DefaultInstanceBrowseName,15047,Variable +CtrlFunctionBlockType_Lock_DefaultInstanceBrowseName,15048,Variable diff --git a/ModelCompiler/Design.v104/OpcUaPLCopenModel.xml b/ModelCompiler/Design.v104/OpcUaPLCopenModel.xml index 42783d43..85fa3558 100644 --- a/ModelCompiler/Design.v104/OpcUaPLCopenModel.xml +++ b/ModelCompiler/Design.v104/OpcUaPLCopenModel.xml @@ -5,14 +5,70 @@ xmlns:OpcUa="http://opcfoundation.org/UA/" TargetNamespace="http://PLCopen.org/OpcUa/IEC61131-3/" TargetXmlNamespace="http://PLCopen.org/OpcUa/IEC61131-3/" + xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" TargetVersion="1.00" TargetPublicationDate="2010-03-24T00:00:00Z" xmlns="http://opcfoundation.org/UA/ModelDesign.xsd"> - http://opcfoundation.org/UA/ - http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/ + http://opcfoundation.org/UA/DI/ http://PLCopen.org/OpcUa/IEC61131-3/ + + + http://PLCopen.org/OpcUa/IEC61131-3/ + + + + http://PLCopen.org/OpcUa/IEC61131-3/ + + + + + 1.00 + + + + + 2010-03-24 + + + + + false + + + + + + 0 + + + + + + + 1:65535 + + + + + + + + + + + + + + + OpcUa:HasComponent + OpcUa:Server_Namespaces + + + + InputVarsOf diff --git a/ModelCompiler/Design.v104/SercosModel.csv b/ModelCompiler/Design.v104/SercosModel.csv index 1789d53d..08f2405b 100644 --- a/ModelCompiler/Design.v104/SercosModel.csv +++ b/ModelCompiler/Design.v104/SercosModel.csv @@ -24,7 +24,6 @@ SercosDeviceType_GroupIdentifier_UIElement,6017,Variable SercosDeviceType_Identification,6018,Object SercosDeviceType_Identification_UIElement,6019,Variable SercosDeviceType_Lock,6020,Object -SercosDeviceType_Lock_Locked,6021,Variable SercosDeviceType_Lock_LockingClient,6022,Variable SercosDeviceType_Lock_LockingUser,6023,Variable SercosDeviceType_Lock_RemainingLockTime,6024,Variable @@ -63,7 +62,6 @@ SercosDeviceType_CPIdentifier_MethodSet_MethodIdentifier,6056,Method SercosDeviceType_CPIdentifier_Identification,6057,Object SercosDeviceType_CPIdentifier_Identification_UIElement,6058,Variable SercosDeviceType_CPIdentifier_Lock,6059,Object -SercosDeviceType_CPIdentifier_Lock_Locked,6060,Variable SercosDeviceType_CPIdentifier_Lock_LockingClient,6061,Variable SercosDeviceType_CPIdentifier_Lock_LockingUser,6062,Variable SercosDeviceType_CPIdentifier_Lock_RemainingLockTime,6063,Variable @@ -117,3 +115,9 @@ SercosNamespaceMetadata_NamespaceFile_ExportNamespace,6110,Method SercosNamespaceMetadata_DefaultRolePermissions,6111,Variable SercosNamespaceMetadata_DefaultUserRolePermissions,6112,Variable SercosNamespaceMetadata_DefaultAccessRestrictions,6113,Variable +SercosDeviceType_Lock_DefaultInstanceBrowseName,15001,Variable +SercosDeviceType_ManufacturerUri,15002,Variable +SercosDeviceType_ProductCode,15003,Variable +SercosDeviceType_AssetId,15004,Variable +SercosDeviceType_ComponentName,15005,Variable +SercosDeviceType_CPIdentifier_Lock_DefaultInstanceBrowseName,15006,Variable diff --git a/ModelCompiler/Design.v104/SercosModel.xml b/ModelCompiler/Design.v104/SercosModel.xml index 3eb55bb2..c8b8ac18 100644 --- a/ModelCompiler/Design.v104/SercosModel.xml +++ b/ModelCompiler/Design.v104/SercosModel.xml @@ -14,7 +14,7 @@ http://sercos.org/UA/ - http://opcfoundation.org/UA/DI/ + http://opcfoundation.org/UA/DI/ http://opcfoundation.org/UA/ @@ -34,7 +34,7 @@ - 2017-03-13 + 2017-03-13 diff --git a/ModelCompiler/Design.v104/StandardTypes.csv b/ModelCompiler/Design.v104/StandardTypes.csv index 165dee9f..355235e4 100644 --- a/ModelCompiler/Design.v104/StandardTypes.csv +++ b/ModelCompiler/Design.v104/StandardTypes.csv @@ -1036,7 +1036,7 @@ ProgramStateMachineType_RecycleCount,2395,Variable ProgramStateMachineType_InstanceCount,2396,Variable ProgramStateMachineType_MaxInstanceCount,2397,Variable ProgramStateMachineType_MaxRecycleCount,2398,Variable -ProgramStateMachineType_ProgramDiagnostics,2399,Variable +ProgramStateMachineType_ProgramDiagnostic,2399,Variable ProgramStateMachineType_Ready,2400,Object ProgramStateMachineType_Ready_StateNumber,2401,Variable ProgramStateMachineType_Running,2402,Object @@ -1944,16 +1944,16 @@ ProgramStateMachineType_LastTransition_Id,3836,Variable ProgramStateMachineType_LastTransition_Name,3837,Variable ProgramStateMachineType_LastTransition_Number,3838,Variable ProgramStateMachineType_LastTransition_TransitionTime,3839,Variable -ProgramStateMachineType_ProgramDiagnostics_CreateSessionId,3840,Variable -ProgramStateMachineType_ProgramDiagnostics_CreateClientName,3841,Variable -ProgramStateMachineType_ProgramDiagnostics_InvocationCreationTime,3842,Variable -ProgramStateMachineType_ProgramDiagnostics_LastTransitionTime,3843,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodCall,3844,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodSessionId,3845,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodInputArguments,3846,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodOutputArguments,3847,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodCallTime,3848,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodReturnStatus,3849,Variable +ProgramStateMachineType_ProgramDiagnostic_CreateSessionId,3840,Variable +ProgramStateMachineType_ProgramDiagnostic_CreateClientName,3841,Variable +ProgramStateMachineType_ProgramDiagnostic_InvocationCreationTime,3842,Variable +ProgramStateMachineType_ProgramDiagnostic_LastTransitionTime,3843,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodCall,3844,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodSessionId,3845,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodInputArguments,3846,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputArguments,3847,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodCallTime,3848,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodReturnStatus,3849,Variable ProgramStateMachineType_FinalResultData,3850,Object AddCommentMethodType,3863,Method AddCommentMethodType_InputArguments,3864,Variable @@ -5871,9 +5871,9 @@ EventNotifierType_OptionSetValues,15034,Variable AccessRestrictionType_OptionSetValues,15035,Variable AttributeWriteMask_OptionSetValues,15036,Variable OpcUa_BinarySchema_Deprecated,15037,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodInputValues,15038,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodInputValues,15038,Variable OpcUa_XmlSchema_Deprecated,15039,Variable -ProgramStateMachineType_ProgramDiagnostics_LastMethodOutputValues,15040,Variable +ProgramStateMachineType_ProgramDiagnostic_LastMethodOutputValues,15040,Variable KeyValuePair_Encoding_DefaultJson,15041,Object IdentityMappingRuleType_Encoding_DefaultJson,15042,Object SecurityGroupFolderType_SecurityGroupName_Placeholder_MaxPastKeyCount,15043,Variable @@ -5942,11 +5942,11 @@ DiscoveryConfiguration_Encoding_DefaultJson,15105,Object MdnsDiscoveryConfiguration_Encoding_DefaultJson,15106,Object RegisterServer2Request_Encoding_DefaultJson,15107,Object SubscribedDataSetType,15108,ObjectType -SubscribedDataSetType_DataSetMetaData,15109,Variable -SubscribedDataSetType_MessageReceiveTimeout,15110,Variable +ChoiceStateType,15109,ObjectType +ChoiceStateType_StateNumber,15110,Variable TargetVariablesType,15111,ObjectType -TargetVariablesType_DataSetMetaData,15112,Variable -TargetVariablesType_MessageReceiveTimeout,15113,Variable +HasGuard,15112,ReferenceType +GuardVariableType,15113,VariableType TargetVariablesType_TargetVariables,15114,Variable TargetVariablesType_AddTargetVariables,15115,Method TargetVariablesType_AddTargetVariables_InputArguments,15116,Variable @@ -5961,8 +5961,8 @@ TargetVariablesTypeRemoveTargetVariablesMethodType,15124,Method TargetVariablesTypeRemoveTargetVariablesMethodType_InputArguments,15125,Variable TargetVariablesTypeRemoveTargetVariablesMethodType_OutputArguments,15126,Variable SubscribedDataSetMirrorType,15127,ObjectType -SubscribedDataSetMirrorType_DataSetMetaData,15128,Variable -SubscribedDataSetMirrorType_MessageReceiveTimeout,15129,Variable +ExpressionGuardVariableType,15128,VariableType +ExpressionGuardVariableType_Expression,15129,Variable RegisterServer2Response_Encoding_DefaultJson,15130,Object ChannelSecurityToken_Encoding_DefaultJson,15131,Object OpenSecureChannelRequest_Encoding_DefaultJson,15132,Object @@ -6081,10 +6081,12 @@ QueryFirstRequest_Encoding_DefaultJson,15244,Object PublishedEventsType_DataSetMetaData,15245,Variable BrokerWriterGroupTransportType_ResourceUri,15246,Variable BrokerWriterGroupTransportType_AuthenticationProfileUri,15247,Variable +CreateCredentialMethodType,15248,Method BrokerWriterGroupTransportType_RequestedDeliveryGuarantee,15249,Variable BrokerDataSetWriterTransportType_ResourceUri,15250,Variable BrokerDataSetWriterTransportType_AuthenticationProfileUri,15251,Variable QueryFirstResponse_Encoding_DefaultJson,15252,Object +CreateCredentialMethodType_InputArguments,15253,Variable QueryNextRequest_Encoding_DefaultJson,15254,Object QueryNextResponse_Encoding_DefaultJson,15255,Object ReadValueId_Encoding_DefaultJson,15256,Object @@ -6148,8 +6150,8 @@ MonitoringFilterResult_Encoding_DefaultJson,15313,Object EventFilterResult_Encoding_DefaultJson,15314,Object AggregateFilterResult_Encoding_DefaultJson,15315,Object DataSetReaderType_SubscribedDataSet,15316,Object -DataSetReaderType_SubscribedDataSet_DataSetMetaData,15317,Variable -DataSetReaderType_SubscribedDataSet_MessageReceiveTimeout,15318,Variable +ElseGuardVariableType,15317,VariableType +BaseAnalogType,15318,VariableType DataSetReaderTransportType,15319,ObjectType MonitoringParameters_Encoding_DefaultJson,15320,Object MonitoredItemCreateRequest_Encoding_DefaultJson,15321,Object @@ -6437,7 +6439,7 @@ OpcUa_BinarySchema_EnumDescription,15602,Variable OpcUa_BinarySchema_EnumDescription_DataTypeVersion,15603,Variable OpcUa_BinarySchema_EnumDescription_DictionaryFragment,15604,Variable DataSetWriterMessageDataType,15605,DataType -Server_ServerCapabilities_Roles,15606,Object +Server_ServerCapabilities_RoleSet,15606,Object RoleSetType,15607,ObjectType RoleSetType_RoleName_Placeholder,15608,Object PubSubGroupDataType,15609,DataType @@ -7120,23 +7122,23 @@ ReaderGroupMessageDataType_Encoding_DefaultJson,16285,Object DataSetReaderDataType_Encoding_DefaultJson,16286,Object DataSetReaderTransportDataType_Encoding_DefaultJson,16287,Object DataSetReaderMessageDataType_Encoding_DefaultJson,16288,Object -ServerType_ServerCapabilities_Roles,16289,Object -ServerType_ServerCapabilities_Roles_AddRole,16290,Method -ServerType_ServerCapabilities_Roles_AddRole_InputArguments,16291,Variable -ServerType_ServerCapabilities_Roles_AddRole_OutputArguments,16292,Variable -ServerType_ServerCapabilities_Roles_RemoveRole,16293,Method -ServerType_ServerCapabilities_Roles_RemoveRole_InputArguments,16294,Variable -ServerCapabilitiesType_Roles,16295,Object -ServerCapabilitiesType_Roles_AddRole,16296,Method -ServerCapabilitiesType_Roles_AddRole_InputArguments,16297,Variable -ServerCapabilitiesType_Roles_AddRole_OutputArguments,16298,Variable -ServerCapabilitiesType_Roles_RemoveRole,16299,Method -ServerCapabilitiesType_Roles_RemoveRole_InputArguments,16300,Variable -Server_ServerCapabilities_Roles_AddRole,16301,Method -Server_ServerCapabilities_Roles_AddRole_InputArguments,16302,Variable -Server_ServerCapabilities_Roles_AddRole_OutputArguments,16303,Variable -Server_ServerCapabilities_Roles_RemoveRole,16304,Method -Server_ServerCapabilities_Roles_RemoveRole_InputArguments,16305,Variable +ServerType_ServerCapabilities_RoleSet,16289,Object +ServerType_ServerCapabilities_RoleSet_AddRole,16290,Method +ServerType_ServerCapabilities_RoleSet_AddRole_InputArguments,16291,Variable +ServerType_ServerCapabilities_RoleSet_AddRole_OutputArguments,16292,Variable +ServerType_ServerCapabilities_RoleSet_RemoveRole,16293,Method +ServerType_ServerCapabilities_RoleSet_RemoveRole_InputArguments,16294,Variable +ServerCapabilitiesType_RoleSet,16295,Object +ServerCapabilitiesType_RoleSet_AddRole,16296,Method +ServerCapabilitiesType_RoleSet_AddRole_InputArguments,16297,Variable +ServerCapabilitiesType_RoleSet_AddRole_OutputArguments,16298,Variable +ServerCapabilitiesType_RoleSet_RemoveRole,16299,Method +ServerCapabilitiesType_RoleSet_RemoveRole_InputArguments,16300,Variable +Server_ServerCapabilities_RoleSet_AddRole,16301,Method +Server_ServerCapabilities_RoleSet_AddRole_InputArguments,16302,Variable +Server_ServerCapabilities_RoleSet_AddRole_OutputArguments,16303,Variable +Server_ServerCapabilities_RoleSet_RemoveRole,16304,Method +Server_ServerCapabilities_RoleSet_RemoveRole_InputArguments,16305,Variable DefaultInputValues,16306,Variable AudioDataType,16307,DataType SubscribedDataSetDataType_Encoding_DefaultJson,16308,Object @@ -7144,7 +7146,7 @@ SelectionListType,16309,VariableType TargetVariablesDataType_Encoding_DefaultJson,16310,Object SubscribedDataSetMirrorDataType_Encoding_DefaultJson,16311,Object SelectionListType_RestrictToList,16312,Variable -Server_CurrentTimeZone,16313,Variable +AdditionalParametersType,16313,DataType FileSystem,16314,Object FileSystem_FileDirectoryName_Placeholder,16315,Object FileSystem_FileDirectoryName_Placeholder_CreateDirectory,16316,Method @@ -8052,27 +8054,27 @@ DiscrepancyAlarmType_Tolerance,17217,Variable SafetyConditionClassType,17218,ObjectType HighlyManagedAlarmConditionClassType,17219,ObjectType TrainingConditionClassType,17220,ObjectType -TestingConditionClassType,17221,ObjectType +TestingConditionSubClassType,17221,ObjectType AuditConditionCommentEventType_ConditionEventId,17222,Variable AuditConditionAcknowledgeEventType_ConditionEventId,17223,Variable AuditConditionConfirmEventType_ConditionEventId,17224,Variable -AuditConditionSuppressEventType,17225,ObjectType -AuditConditionSuppressEventType_EventId,17226,Variable -AuditConditionSuppressEventType_EventType,17227,Variable -AuditConditionSuppressEventType_SourceNode,17228,Variable -AuditConditionSuppressEventType_SourceName,17229,Variable -AuditConditionSuppressEventType_Time,17230,Variable -AuditConditionSuppressEventType_ReceiveTime,17231,Variable -AuditConditionSuppressEventType_LocalTime,17232,Variable -AuditConditionSuppressEventType_Message,17233,Variable -AuditConditionSuppressEventType_Severity,17234,Variable -AuditConditionSuppressEventType_ActionTimeStamp,17235,Variable -AuditConditionSuppressEventType_Status,17236,Variable -AuditConditionSuppressEventType_ServerId,17237,Variable -AuditConditionSuppressEventType_ClientAuditEntryId,17238,Variable -AuditConditionSuppressEventType_ClientUserId,17239,Variable -AuditConditionSuppressEventType_MethodId,17240,Variable -AuditConditionSuppressEventType_InputArguments,17241,Variable +AuditConditionSuppressionEventType,17225,ObjectType +AuditConditionSuppressionEventType_EventId,17226,Variable +AuditConditionSuppressionEventType_EventType,17227,Variable +AuditConditionSuppressionEventType_SourceNode,17228,Variable +AuditConditionSuppressionEventType_SourceName,17229,Variable +AuditConditionSuppressionEventType_Time,17230,Variable +AuditConditionSuppressionEventType_ReceiveTime,17231,Variable +AuditConditionSuppressionEventType_LocalTime,17232,Variable +AuditConditionSuppressionEventType_Message,17233,Variable +AuditConditionSuppressionEventType_Severity,17234,Variable +AuditConditionSuppressionEventType_ActionTimeStamp,17235,Variable +AuditConditionSuppressionEventType_Status,17236,Variable +AuditConditionSuppressionEventType_ServerId,17237,Variable +AuditConditionSuppressionEventType_ClientAuditEntryId,17238,Variable +AuditConditionSuppressionEventType_ClientUserId,17239,Variable +AuditConditionSuppressionEventType_MethodId,17240,Variable +AuditConditionSuppressionEventType_InputArguments,17241,Variable AuditConditionSilenceEventType,17242,ObjectType AuditConditionSilenceEventType_EventId,17243,Variable AuditConditionSilenceEventType_EventType,17244,Variable @@ -8326,9 +8328,117 @@ ReaderGroupType_GroupProperties,17491,Variable ReaderGroupType_DataSetReaderName_Placeholder_DataSetReaderProperties,17492,Variable DataSetWriterType_DataSetWriterProperties,17493,Variable DataSetReaderType_DataSetReaderProperties,17494,Variable +CreateCredentialMethodType_OutputArguments,17495,Variable +KeyCredentialConfigurationFolderType,17496,ObjectType +AnalogUnitType,17497,VariableType +AnalogUnitType_Definition,17498,Variable +AnalogUnitType_ValuePrecision,17499,Variable +AnalogUnitType_InstrumentRange,17500,Variable +AnalogUnitType_EURange,17501,Variable +AnalogUnitType_EngineeringUnits,17502,Variable +PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_Selections,17503,Variable +PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions,17504,Variable +PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_RestrictToList,17505,Variable +PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_Selections,17506,Variable PubSubConnectionType_AddReaderGroup_InputArguments,17507,Variable PubSubConnectionType_AddReaderGroup_OutputArguments,17508,Variable +PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions,17509,Variable +PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_RestrictToList,17510,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder,17511,Object +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ResourceUri,17512,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ProfileUri,17513,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_EndpointUrls,17514,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ServiceStatus,17515,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey,17516,Method +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_InputArguments,17517,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_OutputArguments,17518,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential,17519,Method +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential_InputArguments,17520,Variable +KeyCredentialConfigurationFolderType_ServiceName_Placeholder_DeleteCredential,17521,Method +KeyCredentialConfigurationFolderType_CreateCredential,17522,Method +KeyCredentialConfigurationFolderType_CreateCredential_InputArguments,17523,Variable +KeyCredentialConfigurationFolderType_CreateCredential_OutputArguments,17524,Variable +KeyCredentialConfiguration_ServiceName_Placeholder_GetEncryptingKey,17525,Method +KeyCredentialConfiguration_ServiceName_Placeholder_GetEncryptingKey_InputArguments,17526,Variable +KeyCredentialConfiguration_ServiceName_Placeholder_GetEncryptingKey_OutputArguments,17527,Variable +KeyCredentialConfiguration_CreateCredential,17528,Method +KeyCredentialConfiguration_CreateCredential_InputArguments,17529,Variable +KeyCredentialConfiguration_CreateCredential_OutputArguments,17530,Variable +GetEncryptingKeyMethodType,17531,Method +GetEncryptingKeyMethodType_InputArguments,17532,Variable +GetEncryptingKeyMethodType_OutputArguments,17533,Variable +KeyCredentialConfigurationType_GetEncryptingKey,17534,Method +KeyCredentialConfigurationType_GetEncryptingKey_InputArguments,17535,Variable +KeyCredentialConfigurationType_GetEncryptingKey_OutputArguments,17536,Variable +AdditionalParametersType_Encoding_DefaultBinary,17537,Object +OpcUa_BinarySchema_AdditionalParametersType,17538,Variable +OpcUa_BinarySchema_AdditionalParametersType_DataTypeVersion,17539,Variable +OpcUa_BinarySchema_AdditionalParametersType_DictionaryFragment,17540,Variable +AdditionalParametersType_Encoding_DefaultXml,17541,Object +OpcUa_XmlSchema_AdditionalParametersType,17542,Variable +OpcUa_XmlSchema_AdditionalParametersType_DataTypeVersion,17543,Variable +OpcUa_XmlSchema_AdditionalParametersType_DictionaryFragment,17544,Variable +RsaEncryptedSecret,17545,DataType +EccEncryptedSecret,17546,DataType +AdditionalParametersType_Encoding_DefaultJson,17547,Object +EphemeralKeyType,17548,DataType +EphemeralKeyType_Encoding_DefaultBinary,17549,Object +OpcUa_BinarySchema_EphemeralKeyType,17550,Variable +OpcUa_BinarySchema_EphemeralKeyType_DataTypeVersion,17551,Variable +OpcUa_BinarySchema_EphemeralKeyType_DictionaryFragment,17552,Variable +EphemeralKeyType_Encoding_DefaultXml,17553,Object +OpcUa_XmlSchema_EphemeralKeyType,17554,Variable +OpcUa_XmlSchema_EphemeralKeyType_DataTypeVersion,17555,Variable +OpcUa_XmlSchema_EphemeralKeyType_DictionaryFragment,17556,Variable +EphemeralKeyType_Encoding_DefaultJson,17557,Object +PubSubConnectionType_WriterGroupName_Placeholder_HeaderLayoutUri,17558,Variable +WriterGroupType_HeaderLayoutUri,17559,Variable +ReaderGroupType_DataSetReaderName_Placeholder_KeyFrameCount,17560,Variable PubSubConnectionTypeAddWriterGroupMethodType,17561,Method +ReaderGroupType_DataSetReaderName_Placeholder_HeaderLayoutUri,17562,Variable +DataSetReaderType_KeyFrameCount,17563,Variable +DataSetReaderType_HeaderLayoutUri,17564,Variable +BaseAnalogType_Definition,17565,Variable +BaseAnalogType_ValuePrecision,17566,Variable +BaseAnalogType_InstrumentRange,17567,Variable +BaseAnalogType_EURange,17568,Variable +BaseAnalogType_EngineeringUnits,17569,Variable +AnalogUnitRangeType,17570,VariableType +AnalogUnitRangeType_Definition,17571,Variable +AnalogUnitRangeType_ValuePrecision,17572,Variable +AnalogUnitRangeType_InstrumentRange,17573,Variable +AnalogUnitRangeType_EURange,17574,Variable +AnalogUnitRangeType_EngineeringUnits,17575,Variable +PubSubConnectionType_Address_NetworkInterface_Selections,17576,Variable +PubSubConnectionType_Address_NetworkInterface_SelectionDescriptions,17577,Variable +PubSubConnectionType_Address_NetworkInterface_RestrictToList,17578,Variable +DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface_Selections,17579,Variable +DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface_SelectionDescriptions,17580,Variable +DatagramConnectionTransportType_DiscoveryAddress_NetworkInterface_RestrictToList,17581,Variable +NetworkAddressType_NetworkInterface_Selections,17582,Variable +NetworkAddressType_NetworkInterface_SelectionDescriptions,17583,Variable +NetworkAddressType_NetworkInterface_RestrictToList,17584,Variable +NetworkAddressUrlType_NetworkInterface_Selections,17585,Variable +NetworkAddressUrlType_NetworkInterface_SelectionDescriptions,17586,Variable +NetworkAddressUrlType_NetworkInterface_RestrictToList,17587,Variable +Index,17588,DataType +DictionaryEntryType,17589,ObjectType +DictionaryEntryType_DictionaryEntryName_Placeholder,17590,Object +DictionaryFolderType,17591,ObjectType +DictionaryFolderType_DictionaryFolderName_Placeholder,17592,Object +DictionaryFolderType_DictionaryEntryName_Placeholder,17593,Object +Dictionaries,17594,Object +Dictionaries_DictionaryFolderName_Placeholder,17595,Object +Dictionaries_DictionaryEntryName_Placeholder,17596,Object +HasDictionaryEntry,17597,ReferenceType +IrdiDictionaryEntryType,17598,ObjectType +IrdiDictionaryEntryType_DictionaryEntryName_Placeholder,17599,Object +UriDictionaryEntryType,17600,ObjectType +UriDictionaryEntryType_DictionaryEntryName_Placeholder,17601,Object +BaseInterfaceType,17602,ObjectType +HasInterface,17603,ReferenceType +HasAddIn,17604,ReferenceType +DefaultInstanceBrowseName,17605,Variable GenericAttributeValue,17606,DataType GenericAttributes,17607,DataType GenericAttributeValue_Encoding_DefaultXml,17608,Object @@ -10399,8 +10509,6 @@ ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTok ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID,21004,Variable ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel,21005,Variable ReaderGroupType_DataSetReaderName_Placeholder_SubscribedDataSet,21006,Object -ReaderGroupType_DataSetReaderName_Placeholder_SubscribedDataSet_DataSetMetaData,21007,Variable -ReaderGroupType_DataSetReaderName_Placeholder_SubscribedDataSet_MessageReceiveTimeout,21008,Variable ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables,21009,Method ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_InputArguments,21010,Variable ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_OutputArguments,21011,Variable @@ -10510,7 +10618,6 @@ UadpDataSetWriterMessageType_NetworkMessageNumber,21114,Variable UadpDataSetWriterMessageType_DataSetOffset,21115,Variable UadpDataSetReaderMessageType,21116,ObjectType UadpDataSetReaderMessageType_GroupVersion,21117,Variable -UadpDataSetReaderMessageType_DataSetOrdering,21118,Variable UadpDataSetReaderMessageType_NetworkMessageNumber,21119,Variable UadpDataSetReaderMessageType_DataSetClassId,21120,Variable UadpDataSetReaderMessageType_NetworkMessageContentMask,21121,Variable diff --git a/ModelCompiler/Design.v104/StandardTypes.xml b/ModelCompiler/Design.v104/StandardTypes.xml index 55efd88f..7444421e 100644 --- a/ModelCompiler/Design.v104/StandardTypes.xml +++ b/ModelCompiler/Design.v104/StandardTypes.xml @@ -8,7 +8,7 @@ xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" TargetNamespace="http://opcfoundation.org/UA/" TargetVersion="1.04" - TargetPublicationDate="2018-02-09T00:00:00Z" + TargetPublicationDate="2019-04-15T00:00:00Z" > http://opcfoundation.org/UA/ @@ -29,7 +29,7 @@ - 2017-11-22 + 2019-01-31 @@ -62,7 +62,7 @@ - ua:Organizes + ua:HasComponent ua:Server_Namespaces @@ -136,6 +136,10 @@ Specifies the default values for optional input arguments. + + Allows the definition of BrowseName on an ObjectType that all instances should use by default. + + An image encoded in BMP format. @@ -157,7 +161,6 @@ - @@ -263,7 +266,7 @@ <VendorCapability> - + Describes the roles supported by the server. @@ -480,7 +483,7 @@ - + @@ -514,7 +517,7 @@ When the server received the event from the underlying system. - + Information about the local time where the event originated. @@ -720,7 +723,7 @@ - + @@ -819,7 +822,7 @@ - + @@ -931,7 +934,7 @@ - + @@ -977,7 +980,7 @@ - + @@ -999,7 +1002,7 @@ - + @@ -1137,6 +1140,19 @@ + + + + + + + + + + + + + @@ -1205,7 +1221,7 @@ StateMachineInitialState - + @@ -1213,13 +1229,33 @@ StateMachineTransition + + StateMachineChoiceStateType + + + + GuardOf + + + + + + + + + + + + + + - + @@ -1235,10 +1271,9 @@ - - + @@ -1299,9 +1334,11 @@ <FileDirectoryName> + ua:Organizes <FileName> + ua:Organizes @@ -1404,15 +1441,150 @@ - - - - - - - - - + + + + FromState + FileTransferStateMachineType_Idle + + + ToState + FileTransferStateMachineType_ReadPrepare + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ReadPrepare + + + ToState + FileTransferStateMachineType_ReadTransfer + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ReadTransfer + + + ToState + FileTransferStateMachineType_Idle + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_Idle + + + ToState + FileTransferStateMachineType_ApplyWrite + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ApplyWrite + + + ToState + FileTransferStateMachineType_Idle + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ReadPrepare + + + ToState + FileTransferStateMachineType_Error + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ReadTransfer + + + ToState + FileTransferStateMachineType_Error + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_ApplyWrite + + + ToState + FileTransferStateMachineType_Error + + + HasEffect + TransitionEventType + + + + + + + FromState + FileTransferStateMachineType_Error + + + ToState + FileTransferStateMachineType_Idle + + + HasEffect + TransitionEventType + + + @@ -1482,44 +1654,44 @@ - + - + - + - + - + - + - + - AnonymousRole + Anonymous Anonymous The Role has very limited access for use when a Session has anonymous credentials. @@ -1537,13 +1709,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - AuthenticatedUserRole + AuthenticatedUser AuthenticatedUser The Role has limited access for use when a Session has valid non-anonymous credentials but has not been explicity granted access to a Role. @@ -1561,13 +1733,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - ObserverRole + Observer Observer The Role is allowed to browse, read live data, read historical data/events or subscribe to data/events. @@ -1585,13 +1757,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - OperatorRole + Operator Operator The Role is allowed to browse, read live data, read historical data/events or subscribe to data/events. @@ -1609,13 +1781,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - EngineerRole + Engineer Engineer The Role is allowed to browse, read live data, read and update historical data/events, call methods or subscribe to data/events. @@ -1633,13 +1805,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - SupervisorRole + Supervisor Supervisor The Role is allowed to browse, read live data, read and historical data/events, call methods or subscribe to data/events. @@ -1657,13 +1829,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - ConfigureAdminRole + ConfigureAdmin ConfigureAdmin The Role is allowed to change the non-security related configuration settings. @@ -1681,13 +1853,13 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet - SecurityAdminRole + SecurityAdmin SecurityAdmin The Role is allowed to change security related settings. @@ -1705,11 +1877,62 @@ ua:Organizes - ua:Server_ServerCapabilities_Roles + ua:Server_ServerCapabilities_RoleSet + + + + + + + <DictionaryEntryName> + + + + + + + <DictionaryFolderName> + + + <DictionaryEntryName> + + + + + + + + ua:HasComponent + ua:Server + + + + + + DictionaryEntryOf + + + + + + + + + + + + + InterfaceOf + + + + AddInOf + + @@ -1730,14 +1953,32 @@ - + - + + + + + + + + + + + + + + + + + + + @@ -2188,7 +2429,7 @@ - + @@ -2212,7 +2453,7 @@ - + @@ -2240,7 +2481,7 @@ ua:HasAlarmSuppressionGroup - + @@ -2253,7 +2494,7 @@ AlwaysGeneratesEvent - AuditConditionSuppressEventType + AuditConditionSuppressionEventType @@ -2261,7 +2502,7 @@ AlwaysGeneratesEvent - AuditConditionSuppressEventType + AuditConditionSuppressionEventType @@ -2285,7 +2526,7 @@ AlwaysGeneratesEvent - AuditConditionOutOfServiceEventType + AuditConditionResetEventType @@ -2714,7 +2955,7 @@ - + @@ -2744,7 +2985,7 @@ - + @@ -2758,7 +2999,7 @@ - + @@ -2778,13 +3019,15 @@ - + - + - + + + @@ -2813,15 +3056,22 @@ - - - - + + + + - + - + + + + AlwaysGeneratesEvent + AuditUpdateMethodEventType + + + @@ -2855,7 +3105,7 @@ - + @@ -3151,13 +3401,13 @@ - + - + - + @@ -3186,18 +3436,18 @@ - - - + + + - - - - - - - - + + + + + + + + @@ -3512,14 +3762,28 @@ + + + + + + + + + + + - + <ServiceName> - ua:Organizes + + + + ua:HasComponent @@ -3527,19 +3791,31 @@ - - + + + + + + + + + + + + + + - + @@ -3548,16 +3824,16 @@ - + - - + + - + <ServiceName> @@ -3572,7 +3848,7 @@ - + @@ -3776,7 +4052,7 @@ - + @@ -3784,7 +4060,7 @@ - + @@ -3793,7 +4069,7 @@ - + @@ -3828,7 +4104,7 @@ - + @@ -3864,7 +4140,7 @@ - + @@ -3921,7 +4197,7 @@ - + @@ -3942,7 +4218,7 @@ - + @@ -3960,7 +4236,8 @@ - + + @@ -4019,6 +4296,8 @@ + + @@ -4055,7 +4334,7 @@ - + @@ -4075,7 +4354,7 @@ - + @@ -4093,7 +4372,7 @@ - + @@ -4227,6 +4506,7 @@ + @@ -4623,7 +4903,7 @@ - + @@ -4641,6 +4921,7 @@ + @@ -4727,14 +5008,16 @@ - + - + + + @@ -4773,10 +5056,6 @@ - - - - @@ -4817,7 +5096,7 @@ - + @@ -4916,7 +5195,7 @@ - + @@ -4931,11 +5210,11 @@ - + - + @@ -5370,7 +5649,6 @@ - @@ -5409,12 +5687,12 @@ - - + + - + @@ -5453,7 +5731,7 @@ - + diff --git a/ModelCompiler/Design.v104/UA Core Services.xml b/ModelCompiler/Design.v104/UA Core Services.xml index 508eb28f..68d893c0 100644 --- a/ModelCompiler/Design.v104/UA Core Services.xml +++ b/ModelCompiler/Design.v104/UA Core Services.xml @@ -7,7 +7,7 @@ xmlns="http://opcfoundation.org/UA/Core/" TargetNamespace="http://opcfoundation.org/UA/Core/" TargetVersion="1.04" - TargetPublicationDate="2018-02-09T00:00:00Z" + TargetPublicationDate="2019-04-15T00:00:00Z" > @@ -58,8 +58,7 @@ - - + @@ -77,49 +76,46 @@ - - - + + - - + + - - - + + + - - + - - + - + @@ -151,7 +147,7 @@ - + Specifies the attributes which belong to all nodes. A unique identifier for the node. @@ -188,25 +184,25 @@ - + - + - + Specifies the attributes which belong to object nodes. A mask indicating whether events are produced by the object. - + Specifies the attributes which belong to object type nodes. If TRUE the type is abstract and only subtypes of it appear in the address space. - + Specifies the attributes which belong to variable nodes. The current value. @@ -237,7 +233,7 @@ - + Specifies the attributes which belong to variable type nodes. The default value when creating new instances. @@ -256,7 +252,7 @@ - + Specifies the attributes which belong to reference type nodes. If TRUE the type is abstract and only subtypes of it appear in the address space. @@ -269,7 +265,7 @@ - + Specifies the attributes which belong to method nodes. If TRUE the method can be called. @@ -279,7 +275,7 @@ - + If TRUE the view contains a tree of non-looping hierarchical references. @@ -288,7 +284,7 @@ - + If TRUE the type is abstract and only subtypes of it appear in the address space. @@ -297,7 +293,7 @@ - + Specifies a reference which belongs to a node. The node id of the reference type for the reference. @@ -356,7 +352,7 @@ - + This abstract DataType is the base DataType for all union DataTypes. @@ -397,6 +393,10 @@ + + This primitive data type is a UInt32 that identifies an element of an array. + + A numeric identifier for an object. @@ -442,7 +442,7 @@ - + The header passed with every server request. The authentication token for the current session. @@ -467,7 +467,7 @@ - + The header passed with every server response. When the response was sent by the server. @@ -491,14 +491,14 @@ - + The response returned by all services when there is a service level error. A standard header included in all responses returned by servers. - + @@ -506,7 +506,7 @@ - + @@ -750,7 +750,7 @@ - + The token that identifies a set of keys for an active secure channel. A unique identifier for the channel. @@ -832,7 +832,7 @@ A unique identifier for a session used to authenticate requests. - + A digital signature. The cryptography algorithm used to create the signature. @@ -948,6 +948,12 @@ + + + + + + Activates a session with the server. @@ -1132,7 +1138,7 @@ - + The base attributes for all nodes. A mask indicating which attributes have been provided. @@ -1151,14 +1157,14 @@ - + The attributes for an object node. A mask indicating what events are produced by the object. - + The attributes for a variable node. The value of the variable. @@ -1186,7 +1192,7 @@ - + The attributes for a method node. If TRUE the method can be called. @@ -1196,14 +1202,14 @@ - + The attributes for an object type node. If TRUE the type is abstract and only subtypes of it appear in the address space. - + The attributes for a variable type node. The default value when creating new instances. @@ -1222,7 +1228,7 @@ - + The attributes for a reference type node. If TRUE the type is abstract and only subtypes of it appear in the address space. @@ -1235,14 +1241,14 @@ - + The attributes for a data type node. If TRUE the type is abstract and only subtypes of it appear in the address space. - + The attributes for a view node. If TRUE the view contains a tree of non-looping hierarchical references. @@ -1252,12 +1258,12 @@ - + - + @@ -1286,7 +1292,7 @@ - + A result of an add node operation. A code indicating any error during the operation. @@ -1441,9 +1447,6 @@ Define bits used to indicate which attributes are writable. - - No attributes are writable. - The access level attribute is writable. @@ -1524,7 +1527,7 @@ - + The directions of the references to return. Return forward references. @@ -1538,7 +1541,7 @@ - + The view to browse. The node id of the view. @@ -1551,7 +1554,7 @@ - + A request to browse the the references from a node. The id of the node to browse. @@ -1573,7 +1576,7 @@ - + A bit mask which specifies what should be returned in a browse response. Return only the node id. @@ -1607,7 +1610,7 @@ - + The description of a reference. The type of references. @@ -1636,7 +1639,7 @@ An identifier for a suspended query or browse operation. - + The result of a browse operation. A code indicating any error during the operation. @@ -1727,7 +1730,7 @@ - + A request to translate a path into a node id. The starting point for the search. @@ -1737,17 +1740,17 @@ - + The target of the translated path. The id of the target node. - + The index of the target in the relative path. UInt32.MaxValue if the entire path was processed. - + The result of a translate opearation. A code indicating any error during the operation. @@ -1845,13 +1848,13 @@ - + - + @@ -1878,13 +1881,13 @@ - + - + @@ -1925,18 +1928,18 @@ - + - + - + @@ -1974,7 +1977,7 @@ - + @@ -1982,7 +1985,7 @@ - + @@ -2003,30 +2006,30 @@ - + - + - + - + - + - + - + @@ -2034,7 +2037,7 @@ - + @@ -2042,22 +2045,22 @@ - + - + - + - + @@ -2080,7 +2083,7 @@ - + @@ -2099,7 +2102,7 @@ - + @@ -2117,37 +2120,37 @@ - + - + - + - + - + - + - + @@ -2165,13 +2168,13 @@ - + - + @@ -2190,19 +2193,19 @@ - + - + - + @@ -2210,7 +2213,7 @@ - + @@ -2229,28 +2232,28 @@ - + - + - + - + - + @@ -2258,13 +2261,13 @@ - + - + @@ -2286,12 +2289,12 @@ - + - + @@ -2406,29 +2409,29 @@ - + - + - + - + - + - + @@ -2437,12 +2440,12 @@ - + - + @@ -2475,7 +2478,7 @@ - + @@ -2756,7 +2759,7 @@ - + @@ -2786,7 +2789,7 @@ - + diff --git a/ModelCompiler/Design.v104/UA Defined Types.xml b/ModelCompiler/Design.v104/UA Defined Types.xml index 8c7ea52a..50f0469b 100644 --- a/ModelCompiler/Design.v104/UA Defined Types.xml +++ b/ModelCompiler/Design.v104/UA Defined Types.xml @@ -1,5 +1,5 @@  - + http://opcfoundation.org/UA/ @@ -455,7 +455,7 @@ - 2017-11-22 + 2019-01-31 @@ -488,7 +488,7 @@ - tns:Organizes + tns:HasComponent tns:Server_Namespaces @@ -544,6 +544,9 @@ Specifies the default values for optional input arguments. + + Allows the definition of BrowseName on an ObjectType that all instances should use by default. + An image encoded in BMP format. @@ -661,7 +664,7 @@ <VendorCapability> - + Describes the roles supported by the server. @@ -865,7 +868,7 @@ - + @@ -897,7 +900,7 @@ When the server received the event from the underlying system. - + Information about the local time where the event originated. @@ -1077,7 +1080,7 @@ - + @@ -1151,7 +1154,7 @@ - + @@ -1257,7 +1260,7 @@ - + @@ -1287,7 +1290,7 @@ - + @@ -1309,7 +1312,7 @@ - + @@ -1389,6 +1392,17 @@ + + + + + + + + + + + @@ -1453,7 +1467,20 @@ StateMachineTransition - + + StateMachineChoiceStateType + + + GuardOf + + + + + + + + + @@ -1466,7 +1493,7 @@ - + @@ -1520,9 +1547,11 @@ <FileDirectoryName> + tns:Organizes <FileName> + tns:Organizes @@ -1612,15 +1641,150 @@ - - - - - - - - - + + + + tns:FromState + tns:FileTransferStateMachineType_Idle + + + tns:ToState + tns:FileTransferStateMachineType_ReadPrepare + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ReadPrepare + + + tns:ToState + tns:FileTransferStateMachineType_ReadTransfer + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ReadTransfer + + + tns:ToState + tns:FileTransferStateMachineType_Idle + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_Idle + + + tns:ToState + tns:FileTransferStateMachineType_ApplyWrite + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ApplyWrite + + + tns:ToState + tns:FileTransferStateMachineType_Idle + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ReadPrepare + + + tns:ToState + tns:FileTransferStateMachineType_Error + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ReadTransfer + + + tns:ToState + tns:FileTransferStateMachineType_Error + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_ApplyWrite + + + tns:ToState + tns:FileTransferStateMachineType_Error + + + tns:HasEffect + tns:TransitionEventType + + + + + + + tns:FromState + tns:FileTransferStateMachineType_Error + + + tns:ToState + tns:FileTransferStateMachineType_Idle + + + tns:HasEffect + tns:TransitionEventType + + + @@ -1681,37 +1845,37 @@ - + - + - + - + - + - + - + - AnonymousRole + Anonymous Anonymous The Role has very limited access for use when a Session has anonymous credentials. @@ -1729,12 +1893,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - AuthenticatedUserRole + AuthenticatedUser AuthenticatedUser The Role has limited access for use when a Session has valid non-anonymous credentials but has not been explicity granted access to a Role. @@ -1752,12 +1916,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - ObserverRole + Observer Observer The Role is allowed to browse, read live data, read historical data/events or subscribe to data/events. @@ -1775,12 +1939,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - OperatorRole + Operator Operator The Role is allowed to browse, read live data, read historical data/events or subscribe to data/events. @@ -1798,12 +1962,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - EngineerRole + Engineer Engineer The Role is allowed to browse, read live data, read and update historical data/events, call methods or subscribe to data/events. @@ -1821,12 +1985,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - SupervisorRole + Supervisor Supervisor The Role is allowed to browse, read live data, read and historical data/events, call methods or subscribe to data/events. @@ -1844,12 +2008,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - ConfigureAdminRole + ConfigureAdmin ConfigureAdmin The Role is allowed to change the non-security related configuration settings. @@ -1867,12 +2031,12 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet - SecurityAdminRole + SecurityAdmin SecurityAdmin The Role is allowed to change security related settings. @@ -1890,10 +2054,47 @@ tns:Organizes - tns:Server_ServerCapabilities_Roles + tns:Server_ServerCapabilities_RoleSet + + + + + + + <DictionaryEntryName> + + + + + + + <DictionaryFolderName> + + + <DictionaryEntryName> + + + + + + + tns:HasComponent + tns:Server + + DictionaryEntryOf + + + + + + InterfaceOf + + + AddInOf + A variable that contains live automation data. @@ -1911,13 +2112,28 @@ - + - + + + + + + + + + + + + + + + + @@ -2341,7 +2557,7 @@ - + @@ -2365,7 +2581,7 @@ - + @@ -2393,7 +2609,7 @@ tns:HasAlarmSuppressionGroup - + @@ -2406,7 +2622,7 @@ tns:AlwaysGeneratesEvent - tns:AuditConditionSuppressEventType + tns:AuditConditionSuppressionEventType @@ -2414,7 +2630,7 @@ tns:AlwaysGeneratesEvent - tns:AuditConditionSuppressEventType + tns:AuditConditionSuppressionEventType @@ -2438,7 +2654,7 @@ tns:AlwaysGeneratesEvent - tns:AuditConditionOutOfServiceEventType + tns:AuditConditionResetEventType @@ -2844,7 +3060,7 @@ - + @@ -2871,7 +3087,7 @@ - + @@ -2882,7 +3098,7 @@ - + @@ -2899,10 +3115,10 @@ - + - + @@ -2926,15 +3142,22 @@ - - - - + + + + - + - + + + + tns:AlwaysGeneratesEvent + tns:AuditUpdateMethodEventType + + + @@ -2963,7 +3186,7 @@ - + The Program is in a terminal or failed state, and it cannot be started or resumed without being reset. @@ -3257,12 +3480,12 @@ - + - + - + @@ -3288,18 +3511,18 @@ - - - + + + - - - - - - - - + + + + + + + + @@ -3462,9 +3685,9 @@ + - @@ -3571,13 +3794,25 @@ - + + + + + + + + + + + <ServiceName> - tns:Organizes + + + tns:HasComponent @@ -3585,17 +3820,28 @@ - + + + + + + + + + + + + - + @@ -3603,14 +3849,14 @@ - + - - - + + + <ServiceName> @@ -3624,7 +3870,7 @@ - + @@ -3787,13 +4033,13 @@ VariancePopulation Retrieve the variance for the interval as calculated by the StandardDeviationPopulation which includes Simple Bounding Values. - + - + @@ -3801,7 +4047,7 @@ - + @@ -3831,7 +4077,7 @@ - + @@ -3864,7 +4110,7 @@ - + @@ -3914,7 +4160,7 @@ - + @@ -3932,7 +4178,7 @@ - + @@ -3949,7 +4195,8 @@ - + + @@ -4000,6 +4247,8 @@ + + @@ -4031,7 +4280,7 @@ - + @@ -4048,7 +4297,7 @@ - + @@ -4065,7 +4314,7 @@ - + @@ -4184,6 +4433,7 @@ + @@ -4542,7 +4792,7 @@ - + @@ -4559,6 +4809,7 @@ + @@ -4633,14 +4884,16 @@ - + - + + + @@ -4674,12 +4927,7 @@ - - - - - - + @@ -4713,7 +4961,7 @@ - + @@ -4811,7 +5059,7 @@ - + @@ -4825,10 +5073,10 @@ - + - + @@ -5251,7 +5499,6 @@ - @@ -5285,11 +5532,11 @@ - - + + - + @@ -5324,7 +5571,7 @@ - + @@ -5333,57 +5580,28 @@ - The type of identifier used in a node id. - - The identifier is a numeric value. 0 is a null value. - - - The identifier is a string value. An empty string is a null value. - - - The identifier is a 16 byte structure. 16 zero bytes is a null value. - - - The identifier is an array of bytes. A zero length array is a null value. - + + + + - A mask specifying the class of the node. - - No classes are selected. - - - The node is an object. - - - The node is a variable. - - - The node is a method. - - - The node is an object type. - - - The node is an variable type. - - - The node is a reference type. - - - The node is a data type. - - - The node is a view. - + + + + + + + + + - + - @@ -5401,37 +5619,35 @@ - - - + + - - + + - - - + + + - + - @@ -5439,16 +5655,15 @@ - - + - + @@ -5483,205 +5698,101 @@ - - Specifies the attributes which belong to all nodes. + - - A unique identifier for the node. - - - The class of the node. - - - The browse name of the node. - - - The display name of the node. - - - The description of the node. - - - A mask indicating which attributes are writable. - - - A mask indicating which attributes are writable by the current user. - - - A list of permissions for the node assigned to roles. - - - A list of permissions for the node assigned to roles which are available to the current session. - - - A mask indicating any access restrictions that apply to the node. - - - The references that belong to the node. - + + + + + + + + + + + - - - - Specifies the attributes which belong to object nodes. + + + - - A mask indicating whether events are produced by the object. - + - - Specifies the attributes which belong to object type nodes. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - Specifies the attributes which belong to variable nodes. + - - The current value. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - A bit mask specifying how the value may be accessed. - - - A bit mask specifying how the value may be accessed by the current user. - - - The minimum possible sampling interval for the value. - - - TRUE if the server is current storing the history of the value. - - - A bit mask specifying how the value may be accessed. - + + + + + + + + + - - Specifies the attributes which belong to variable type nodes. + - - The default value when creating new instances. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + + + + + - - Specifies the attributes which belong to reference type nodes. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - - - If TRUE the reference type has the same semantics in both directions. - - - The display name for the reference when following it from target to source. - + + + - - Specifies the attributes which belong to method nodes. + - - If TRUE the method can be called. - - - If TRUE the method can be called by the current user. - + + - + - - If TRUE the view contains a tree of non-looping hierarchical references. - - - A mask indicating whether events are produced by the view. - + + - + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - - - Provides the metadata and encoding information for custom DataTypes. - + + - - Specifies a reference which belongs to a node. + - - The node id of the reference type for the reference. - - - The reference is an inverse reference. - - - The node id for the target of the reference. - + + + - An argument for a method. - - The name of the argument. - - - The data type of the argument. - - - Whether the argument is an array type and the rank of the array if it is. - - - The number of dimensions if the argument is an array type and one or more dimensions have a fixed length. - - - The description for the argument. - + + + + + - A mapping between a value of an enumerated type and a name and description. - - The value of the enumeration. - - - Human readable name for the value. - - - A description of the value. - + + + @@ -5690,154 +5801,75 @@ - This abstract Structured DataType is the base DataType for all DataTypes representing a bit mask. - - Array of bytes representing the bits in the option set. - - - Array of bytes with same size as value representing the valid bits in the value parameter. - - - - - This abstract DataType is the base DataType for all union DataTypes. - - - A string normalized based on the rules in the unicode specification. - - - An arbitraty numeric value. - - - A period of time formatted as defined in ISO 8601-2000. - - - A time formatted as defined in ISO 8601-2000. - - - A date formatted as defined in ISO 8601-2000. - - - A period of time measured in milliseconds. - - - A date/time value specified in Universal Coordinated Time (UTC). - - - An identifier for a user locale. - + + + + + + + + + + + + + - - A numeric identifier for an object. - + + - The types of applications. - - The application is a server. - - - The application is a client. - - - The application is a client and a server. - - - The application is a discovery server. - + + + + - Describes an application and how to find it. - - The globally unique identifier for the application. - - - The globally unique identifier for the product. - - - The name of application. - - - The type of application. - - - The globally unique identifier for the server that is acting as a gateway for the server. - - - The globally unique identifier for the discovery profile supported by the server. - - - The URLs for the server's discovery endpoints. - + + + + + + + - - The header passed with every server request. + - - The authentication token for the current session. - - - When the request was sent by the client. - - - A handle assigned by the client to the request. It is returned in the response. - - - A mask indicating what diagnostic information should be returned in the response. - - - Identifies an entry in the client audit log. - - - The timeout for the operation specified by the client. - - - Allows vendor specific information to be included in the header. - + + + + + + + - - The header passed with every server response. + - - When the response was sent by the server. - - - The handle passed by the client in the request. - - - The result of the operation. If Bad there are no parameters returned. - - - The diagnostics associated with the ServiceResult. - - - A table of strings referenced by the diagnotics structures included in the request. - - - Allows vendor specific information to be included in the header. - + + + + + + - - The response returned by all services when there is a service level error. + - - A standard header included in all responses returned by servers. - + - + @@ -5846,39 +5878,25 @@ - + - - Finds the servers known to the discovery server. + - - A standard header included in all requests sent to a server. - - - The URL used by the client to send the request. - - - The locales to use when constructing a response. - - - The URIs of the servers to return (all servers returned if none specified). - + + + + - - Finds the servers known to the discovery server. + - - A standard header included in all responses returned by servers. - - - The servers that met the criteria specified in the request. - + + @@ -5889,7 +5907,7 @@ - + @@ -5897,197 +5915,103 @@ - + - - A certificate for an instance of an application. - + - The type of security to use on a message. - - An invalid mode. - - - No security is used. - - - The message is signed. - - - The message is signed and encrypted. - + + + + - The possible user token types. - - An anonymous user. - - - A user identified by a user name and password. - - - A user identified by an X509 certificate. - - - A user identified by WS-Security XML token. - + + + + - Describes a user token that can be used with a server. - - A identifier for the policy assigned by the server. - - - The type of user token. - - - The type of issued token. - - - The endpoint or any other information need to contruct an issued token URL. - - - The security policy to use when encrypting or signing the user token. - + + + + + - The description of a endpoint that can be used to access a server. - - The network endpoint to use when connecting to the server. - - - The description of the server. - - - The server's application certificate. - - - The security mode that must be used when connecting to the endpoint. - - - The security policy to use when connecting to the endpoint. - - - The user identity tokens that can be used with this endpoint. - - - The transport profile to use when connecting to the endpoint. - - - A server assigned value that indicates how secure the endpoint is relative to other server endpoints. - + + + + + + + + - - Gets the endpoints used by the server. + - - A standard header included in all requests sent to a server. - - - The URL used by the client to send the request. - - - The locales to use when constructing a response. - - - The URIs of the transport profiles for the endpoints to return (all endpoints returned if none specified). - + + + + - - Gets the endpoints used by the server. + - - A standard header included in all responses returned by servers. - - - The endpoints that met the criteria specified in the request. - + + - The information required to register a server with a discovery server. - - The globally unique identifier for the server. - - - The globally unique identifier for the product. - - - The name of server in multiple lcoales. - - - The type of server. - - - The globally unique identifier for the server that is acting as a gateway for the server. - - - The URLs for the server's discovery endpoints. - - - A path to a file that is deleted when the server is no longer accepting connections. - - - If FALSE the server will save the registration information to a persistent datastore. - + + + + + + + + - - Registers a server with the discovery server. + - - A standard header included in all requests sent to a server. - - - The server to register. - + + - - Registers a server with the discovery server. + - - A standard header included in all responses returned by servers. - + - - A base type for discovery configuration information. - + - The discovery information needed for mDNS registration. - - The name for server that is broadcast via mDNS. - - - The server capabilities that are broadcast via mDNS. - + + - + - + @@ -6095,1158 +6019,550 @@ - Indicates whether a token if being created or renewed. - - The channel is being created. - - - The channel is being renewed. - + + - - The token that identifies a set of keys for an active secure channel. + - - A unique identifier for the channel. - - - A unique identifier for the current token. - - - When the channel was created. - - - When the channel will expiry. - + + + + - - Creates a secure channel with a server. + - - A standard header included in all requests sent to a server. - - - The version of protocol used by the client. - - - Whether the channel is being created or renewed. - - - The security mode to use with the channel. - - - A random number generated by the client. - - - The channel lifetime in milliseconds. - + + + + + + - - Creates a secure channel with a server. + - - A standard header included in all responses returned by servers. - - - The version of protocol used by the server. - - - The token that identifies the new secure channel. - - - A random number generated by the server. - + + + + - - Closes a secure channel. + - - A standard header included in all requests sent to a server. - + - - Closes a secure channel. + - - A standard header included in all responses returned by servers. - + - A software certificate with a digital signature. - - The data of the certificate. - - - The digital signature. - + + - - A unique identifier for a session used to authenticate requests. - - - A digital signature. + + - - The cryptography algorithm used to create the signature. - - - The signature. - + + - - Creates a new session with the server. + - - A standard header included in all requests sent to a server. - - - Describes the client application. - - - The URI of the server that the client wants to create a session with. - - - The URL that the client used to connect to the server. - - - A name for the session provided by the client. - - - A random number generated by the client. - - - The application certificate for the client. - - - The requested session timeout in milliseconds. - - - The maximum message size accepted by the client. - + + + + + + + + + - - Creates a new session with the server. + - - A standard header included in all responses returned by servers. - - - A identifier which uniquely identifies the session. - - - The token used to authenticate the client in subsequent requests. - - - The session timeout in milliseconds. - - - A random number generated by the server. - - - The application certificate for the server. - - - The endpoints provided by the server. - - - The software certificates owned by the server. - - - A signature created with the server certificate. - - - The maximum message size accepted by the server. - + + + + + + + + + + - A base type for a user identity token. - - The policy id specified in a user token policy for the endpoint being used. - + - - A token representing an anonymous user. - + - A token representing a user identified by a user name and password. - - The user name. - - - The password encrypted with the server certificate. - - - The algorithm used to encrypt the password. - + + + - A token representing a user identified by an X509 certificate. - - The certificate. - + - A token representing a user identified by a WS-Security XML token. - - The XML token encrypted with the server certificate. - - - The algorithm used to encrypt the certificate. - + + - - Activates a session with the server. + + + - - A standard header included in all requests sent to a server. - - - A signature created with the client certificate from the last server nonce returned by the server. - - - The software certificates owned by the client. - - - The locales to use with the session. - - - The user identity to use with the session. - - - A digital signature created with the user identity token. - + + + + + + - - Activates a session with the server. + - - A standard header included in all responses returned by servers. - - - A random number generated by the server. - - - Any errors during validation of the software certificates. - - - The diagnostics associated with the software certificates results. - + + + + - - Closes a session with the server. + - - A standard header included in all requests sent to a server. - - - If TRUE all subscriptions are deleted when the session is closed. - + + - - Closes a session with the server. + - - A standard header included in all responses returned by servers. - + - - Cancels an outstanding request. + - - A standard header included in all requests sent to a server. - - - The handle assigned by the client to the requests being cancelled. - + + - - Cancels an outstanding request. + - - A standard header included in all responses returned by servers. - - - The number of requests successfully cancelled. - + + - The bits used to specify default attributes for a new node. - - No attribuites provided. - - - The access level attribute is specified. - - - The array dimensions attribute is specified. - - - The browse name attribute is specified. - - - The contains no loops attribute is specified. - - - The data type attribute is specified. - - - The description attribute is specified. - - - The display name attribute is specified. - - - The event notifier attribute is specified. - - - The executable attribute is specified. - - - The historizing attribute is specified. - - - The inverse name attribute is specified. - - - The is abstract attribute is specified. - - - The minimum sampling interval attribute is specified. - - - The node class attribute is specified. - - - The node id attribute is specified. - - - The symmetric attribute is specified. - - - The user access level attribute is specified. - - - The user executable attribute is specified. - - - The user write mask attribute is specified. - - - The value rank attribute is specified. - - - The write mask attribute is specified. - - - The value attribute is specified. - - - The write mask attribute is specified. - - - The write mask attribute is specified. - - - The write mask attribute is specified. - - - All attributes are specified. - - - All base attributes are specified. - - - All object attributes are specified. - - - All object type attributes are specified. - - - All variable attributes are specified. - - - All variable type attributes are specified. - - - All method attributes are specified. - - - All reference type attributes are specified. - - - All view attributes are specified. - - - - - The base attributes for all nodes. - - - A mask indicating which attributes have been provided. - - - A human readable name for the node. - - - A description for the node. - - - A mask which specifies which attributes are writable. - - - A mask which specifies which attributes are writable by the current user. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - The attributes for an object node. + - - A mask indicating what events are produced by the object. - + - - The attributes for a variable node. + - - The value of the variable. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - A bit mask specifying how the value may be accessed. - - - A bit mask specifying how the value may be accessed by the current user. - - - The minimum possible sampling interval for the value. - - - TRUE if the server is current storing the history of the value. - + + + + + + + + - - The attributes for a method node. + - - If TRUE the method can be called. - - - If TRUE the method can be called by the current user. - + + - - The attributes for an object type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - The attributes for a variable type node. + - - The default value when creating new instances. - - - The data type of the value. - - - Whether the value is an array type and the rank of the array if it is. - - - The number of dimensions if the value is an array type and one or more dimensions have a fixed length. - - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + + + + + - - The attributes for a reference type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - - - If TRUE the reference type has the same semantics in both directions. - - - The display name for the reference when following it from target to source. - + + + - - The attributes for a data type node. + - - If TRUE the type is abstract and only subtypes of it appear in the address space. - + - - The attributes for a view node. + - - If TRUE the view contains a tree of non-looping hierarchical references. - - - A mask indicating whether events are produced by the view. - + + - + - + - A request to add a node to the server address space. - - The node id for the parent node. - - - The type of reference from the parent to the new node. - - - The node id requested by the client. If null the server must provide one. - - - The browse name for the new node. - - - The class of the new node. - - - The default attributes for the new node. - - - The type definition for the new node. - + + + + + + + - - A result of an add node operation. + - - A code indicating any error during the operation. - - - The id of the new node. - + + - - Adds one or more nodes to the server address space. + - - A standard header included in all requests sent to a server. - - - The list of nodes to add. - + + - - Adds one or more nodes to the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the add node operations. - - - The diagnostics associated with the results returned. - + + + - A request to add a reference to the server address space. - - The source of the reference. - - - The type of reference. - - - If TRUE the reference is a forward reference. - - - The URI of the server containing the target (if in another server). - - - The target of the reference. - - - The node class of the target (if known). - + + + + + + - - Adds one or more references to the server address space. + - - A standard header included in all requests sent to a server. - - - The list of references to add. - + + - - Adds one or more references to the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the add reference operations. - - - The diagnostics associated with the results returned. - + + + - A request to delete a node to the server address space. - - The id of the node to delete. - - - If TRUE all references to the are deleted as well. - + + - - Delete one or more nodes from the server address space. + - - A standard header included in all requests sent to a server. - - - The list of nodes to delete. - + + - - Delete one or more nodes from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the delete nodes operations. - - - The diagnostics associated with the results returned. - + + + - A request to delete a node from the server address space. - - The source of the reference to delete. - - - The type of reference to delete. - - - If TRUE the a forward reference is deleted. - - - The target of the reference to delete. - - - If TRUE the reference is deleted in both directions. - + + + + + - - Delete one or more references from the server address space. + - - A standard header included in all requests sent to a server. - - - The list of references to delete. - + + - - Delete one or more references from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the delete reference operations. - - - The diagnostics associated with the results returned. - + + + - Define bits used to indicate which attributes are writable. - - No attributes are writable. - - - The access level attribute is writable. - - - The array dimensions attribute is writable. - - - The browse name attribute is writable. - - - The contains no loops attribute is writable. - - - The data type attribute is writable. - - - The description attribute is writable. - - - The display name attribute is writable. - - - The event notifier attribute is writable. - - - The executable attribute is writable. - - - The historizing attribute is writable. - - - The inverse name attribute is writable. - - - The is abstract attribute is writable. - - - The minimum sampling interval attribute is writable. - - - The node class attribute is writable. - - - The node id attribute is writable. - - - The symmetric attribute is writable. - - - The user access level attribute is writable. - - - The user executable attribute is writable. - - - The user write mask attribute is writable. - - - The value rank attribute is writable. - - - The write mask attribute is writable. - - - The value attribute is writable. - - - The DataTypeDefinition attribute is writable. - - - The RolePermissions attribute is writable. - - - The AccessRestrictions attribute is writable. - - - The AccessLevelEx attribute is writable. - - - - - The directions of the references to return. - - - Return forward references. - - - Return inverse references. - - - Return forward and inverse references. - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - The view to browse. + - - The node id of the view. - - - Browses the view at or before this time. - - - Browses a specific version of the view . - + + + - - A request to browse the the references from a node. + - - The id of the node to browse. - - - The direction of the references to return. - - - The type of references to return. - - - Includes subtypes of the reference type. - - - A mask indicating which node classes to return. 0 means return all nodes. - - - A mask indicating which fields should be returned in the results. - + + + + + + - - A bit mask which specifies what should be returned in a browse response. + - - Return only the node id. - - - Return the reference type id. - - - Return the flag indicating whether the reference is a forward reference. - - - Return the node class. - - - Return the browse name. - - - Return the display name. - - - Return the type definition. - - - Return all fields. - - - Return the reference type information. - - - Return the information about the target node. - + + + + + + + + + + - - The description of a reference. + - - The type of references. - - - TRUE if the reference is a forward reference. - - - The id of the target node. - - - The browse name of the target node. - - - The display name of the target node. - - - The node class of the target node. - - - The type definition of the target node. - + + + + + + + - - An identifier for a suspended query or browse operation. - - - The result of a browse operation. + + - - A code indicating any error during the operation. - - - A value that indicates the operation is incomplete and can be continued by calling BrowseNext. - - - A list of references that meet the criteria specified in the request. - + + + - - Browse the references for one or more nodes from the server address space. + - - A standard header included in all requests sent to a server. - - - The view to browse. - - - The maximum number of references to return in the response. - - - The list of nodes to browse. - + + + + - - Browse the references for one or more nodes from the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the browse operations. - - - The diagnostics associated with the results. - + + + - - Continues one or more browse operations. + - - A standard header included in all requests sent to a server. - - - If TRUE the continuation points are released and no results are returned. - - - The contination points returned from a previous call to Browse and BrowseNext. - + + + - - Continues one or more browse operations. + - - A standard header included in all responses returned by servers. - - - The results for the browse operations. - - - The diagnostics associated with the results. - + + + - An element in a relative path. - - The type of reference to follow. - - - If TRUE the reverse reference is followed. - - - If TRUE then subtypes of the reference type are followed. - - - The browse name of the target. - + + + + - A relative path constructed from reference types and browse names. - - A list of elements in the path. - + - - A request to translate a path into a node id. + - - The starting point for the search. - - - The path to follow. - + + - - The target of the translated path. + - - The id of the target node. - - - The index of the target in the relative path. UInt32.MaxValue if the entire path was processed. - + + - - The result of a translate opearation. + - - A code indicating any error during the operation. - - - A list of nodes found. The first element matches the type definition. - + + - - Translates one or more paths in the server address space. + - - A standard header included in all requests sent to a server. - - - The list of paths to translate. - + + - - Translates one or more paths in the server address space. + - - A standard header included in all responses returned by servers. - - - The results for the translate operations. - - - The diagnostics associated with the results. - + + + - - Registers one or more nodes for repeated use within a session. + - - A standard header included in all requests sent to a server. - - - The list of nodes to register. - + + - - Registers one or more nodes for repeated use within a session. + - - A standard header included in all responses returned by servers. - - - The list of node ids that can be used for fast access to the nodes. - + + - - Unregisters one or more previously registered nodes. + - - A standard header included in all requests sent to a server. - - - The list of nodes to unregister. - + + - - Unregisters one or more previously registered nodes. + - - A standard header included in all responses returned by servers. - + - - A monotonically increasing value. - - - Specifies a range of array indexes. - - - A time value specified as HH:MM:SS.SSS. - - - A date value. - + + + + @@ -7260,14 +6576,14 @@ - + - + @@ -7296,14 +6612,14 @@ - + - + @@ -7350,27 +6666,27 @@ - + - + - + - + @@ -7380,7 +6696,7 @@ - + @@ -7390,21 +6706,21 @@ - + - + - + @@ -7413,7 +6729,7 @@ - + @@ -7421,7 +6737,7 @@ - + @@ -7429,30 +6745,30 @@ - + - + - + - + - + - - + + @@ -7460,7 +6776,7 @@ - + @@ -7469,7 +6785,7 @@ - + @@ -7478,25 +6794,25 @@ - + - + - + - + @@ -7506,7 +6822,7 @@ - + @@ -7515,14 +6831,14 @@ - + - + @@ -7530,20 +6846,20 @@ - + - + - + @@ -7564,70 +6880,70 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -7635,34 +6951,34 @@ - + - + - + - + - + @@ -7670,7 +6986,7 @@ - + @@ -7692,7 +7008,7 @@ - + @@ -7700,22 +7016,22 @@ - - + + - + - + @@ -7724,14 +7040,14 @@ - + - + @@ -7740,7 +7056,7 @@ - + @@ -7748,20 +7064,20 @@ - + - + - + @@ -7769,7 +7085,7 @@ - + @@ -7777,14 +7093,14 @@ - + - + @@ -7792,14 +7108,14 @@ - + - + @@ -7808,7 +7124,7 @@ - + @@ -7817,21 +7133,21 @@ - + - + - + @@ -7842,7 +7158,7 @@ - + @@ -7851,7 +7167,7 @@ - + @@ -7862,7 +7178,7 @@ - + @@ -7870,46 +7186,46 @@ - + - + - + - - + + - + - + - + @@ -7920,25 +7236,25 @@ - + - + - + - + @@ -7949,46 +7265,46 @@ - + - + - + - + - + - + - + @@ -8156,7 +7472,7 @@ - + @@ -8186,7 +7502,7 @@ - + diff --git a/ModelCompiler/Design.v104/UA Status Codes.xml b/ModelCompiler/Design.v104/UA Status Codes.xml index bf44bff2..29979aa0 100644 --- a/ModelCompiler/Design.v104/UA Status Codes.xml +++ b/ModelCompiler/Design.v104/UA Status Codes.xml @@ -252,7 +252,7 @@ The content filter is not valid. - An unregognized operator was provided in a filter. + An unrecognized operator was provided in a filter. A valid operator was provided, but the server does not provide support for this filter operator. @@ -276,7 +276,7 @@ The operation could not be processed because all continuation points have been allocated. - The operation could not be processed because all continuation points have been allocated. + The reference type id does not refer to a valid reference type node. The browse direction is not valid. @@ -476,7 +476,7 @@ - The server has reached its maximum number of subscriptions. + The server has reached its maximum number of subscriptions. @@ -687,7 +687,7 @@ The aggregate configuration is not valid for specified node. - The request pecifies fields which are not valid for the EventType or cannot be saved by the historian. + The request specifies fields which are not valid for the EventType or cannot be saved by the historian. diff --git a/ModelCompiler/Design/BuiltInTypes.xml b/ModelCompiler/Design/BuiltInTypes.xml index 0ecc750f..b1b23f7e 100644 --- a/ModelCompiler/Design/BuiltInTypes.xml +++ b/ModelCompiler/Design/BuiltInTypes.xml @@ -7,7 +7,7 @@ xmlns="http://opcfoundation.org/UA/" xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" TargetNamespace="http://opcfoundation.org/UA/" - TargetVersion="1.04" + TargetVersion="1.05" TargetPublicationDate="2019-04-15T00:00:00Z" > diff --git a/ModelCompiler/Design/OpcUaDiModelv10.csv b/ModelCompiler/Design/OpcUaDiModelv10.csv deleted file mode 100644 index 0b0b5041..00000000 --- a/ModelCompiler/Design/OpcUaDiModelv10.csv +++ /dev/null @@ -1,44 +0,0 @@ -TopologyElementType,1001,ObjectType -DeviceType,1002,ObjectType -BlockType,1003,ObjectType -ConfigurableObjectType,1004,ObjectType -FunctionalGroupType,1005,ObjectType -ProtocolType,1006,ObjectType -Uses,4001,ReferenceType -DeviceSet,5001,Object -TopologyElementType_ParameterSet,5002,Object -TopologyElementType_MethodSet,5003,Object -ConfigurableObjectType_SupportedTypes,5004,Object -DeviceType_ParameterSet,5005,Object -DeviceType_MethodSet,5006,Object -BlockType_ParameterSet,5007,Object -BlockType_MethodSet,5008,Object -DeviceType_SerialNumber,6001,Variable -DeviceType_RevisionCounter,6002,Variable -DeviceType_Manufacturer,6003,Variable -DeviceType_Model,6004,Variable -DeviceType_DeviceManual,6005,Variable -DeviceType_DeviceRevision,6006,Variable -DeviceType_SoftwareRevision,6007,Variable -DeviceType_HardwareRevision,6008,Variable -BlockType_RevisionCounter,6009,Variable -BlockType_ActualMode,6010,Variable -BlockType_PermittedMode,6011,Variable -BlockType_NormalMode,6012,Variable -BlockType_TargetMode,6013,Variable -TopologyElementType_Identification,6014,Object -DeviceType_Identification,6015,Object -BlockType_Identification,6016,Object -TopologyElementType_ParameterSet_ParameterIdentifier,6017,Variable -TopologyElementType_MethodSet_MethodIdentifier,6018,Method -TopologyElementType_GroupIdentifier,6019,Object -DeviceType_ParameterSet_ParameterIdentifier,6020,Variable -DeviceType_MethodSet_MethodIdentifier,6021,Method -DeviceType_GroupIdentifier,6022,Object -BlockType_ParameterSet_ParameterIdentifier,6023,Variable -BlockType_MethodSet_MethodIdentifier,6024,Method -BlockType_GroupIdentifier,6025,Object -ConfigurableObjectType_ObjectIdentifier,6026,Object -FunctionalGroupType_GroupIdentifier,6027,Object -FunctionalGroupType_ParameterIdentifier,6028,Variable -FunctionalGroupType_MethodIdentifier,6029,Method diff --git a/ModelCompiler/Design/OpcUaDiModelv10.xml b/ModelCompiler/Design/OpcUaDiModelv10.xml deleted file mode 100644 index b75ddb28..00000000 --- a/ModelCompiler/Design/OpcUaDiModelv10.xml +++ /dev/null @@ -1,146 +0,0 @@ - - - - - http://opcfoundation.org/UA/DI/ - http://opcfoundation.org/UA/ - - - The semantic is to indicate that the target Node is used for the source Node of the Reference - UsedBy - - - Contains all instances of devices - - - OpcUa:Organizes - OpcUa:ObjectsFolder - - - - - Defines the basic information components for all configurable elements in a device topology - - - Flat list of Parameters - - - <ParameterIdentifier> - A parameter which belongs to the topology element. - OpcUa:Organizes - - - - - Flat list of Methods - - - <MethodIdentifier> - A method which belongs to the topology element. - OpcUa:Organizes - - - - - <GroupIdentifier> - An application specific functional group used to organize parameters and methods. - - - Used to organize parameters for identification of this TopologyElement - - - - - Defines the basic information components for all configurable elements in a device topology - - - Identifier that uniquely identifies, within a manufacturer, a device instance - - - An incremental counter indicating the number of times the static data within the Device has been modified - - - Model name of the device - - - Name of the company that manufactured the device - - - Address (pathname in the file system or a URL | Web address) of user manual for the device - - - Overall revision level of the device - - - Revision level of the software/firmware of the device - - - Revision level of the hardware of the device - - - - - Adds the concept of Blocks needed for block-oriented FieldDevices - - - Incremental counter indicating the number of times the static data within the Block has been modified - - - Current mode of operation the Block is able to achieve - - - Modes of operation that are allowed for the Block based on application requirements - - - Mode the Block should be set to during normal operating conditions - - - Mode of operation that is desired for the Block - - - - - Defines a general pattern to expose and configure modular components - - - Folder maintaining the set of (sub-types of) BaseObjectTypes that can be instantiated in the ConfigurableComponent - - - <ObjectIdentifier> - The instances that . - - - - - FolderType is used to organize the Parameters and Methods from the complete set (ParameterSet, MethodSet) with regard to their application - - - <GroupIdentifier> - An application specific functional group used to organize parameters and methods. - - - <ParameterIdentifier> - A parameter which belongs to the group. - OpcUa:Organizes - - - <MethodIdentifier> - A method which belongs to the group. - OpcUa:Organizes - - - - - General structure of a Protocol ObjectType - - diff --git a/ModelCompiler/Design/OpcUaDiModelv11.csv b/ModelCompiler/Design/OpcUaDiModelv11.csv deleted file mode 100644 index b37b72c7..00000000 --- a/ModelCompiler/Design/OpcUaDiModelv11.csv +++ /dev/null @@ -1,477 +0,0 @@ -TopologyElementType,1001,ObjectType -DeviceType,1002,ObjectType -BlockType,1003,ObjectType -ConfigurableObjectType,1004,ObjectType -FunctionalGroupType,1005,ObjectType -ProtocolType,1006,ObjectType -Uses,4001,ReferenceType -DeviceSet,5001,Object -TopologyElementType_ParameterSet,5002,Object -TopologyElementType_MethodSet,5003,Object -ConfigurableObjectType_SupportedTypes,5004,Object -DeviceType_ParameterSet,5005,Object -DeviceType_MethodSet,5006,Object -BlockType_ParameterSet,5007,Object -BlockType_MethodSet,5008,Object -DeviceType_SerialNumber,6001,Variable -DeviceType_RevisionCounter,6002,Variable -DeviceType_Manufacturer,6003,Variable -DeviceType_Model,6004,Variable -DeviceType_DeviceManual,6005,Variable -DeviceType_DeviceRevision,6006,Variable -DeviceType_SoftwareRevision,6007,Variable -DeviceType_HardwareRevision,6008,Variable -BlockType_RevisionCounter,6009,Variable -BlockType_ActualMode,6010,Variable -BlockType_PermittedMode,6011,Variable -BlockType_NormalMode,6012,Variable -BlockType_TargetMode,6013,Variable -TopologyElementType_Identification,6014,Object -DeviceType_Identification,6015,Object -BlockType_Identification,6016,Object -TopologyElementType_ParameterSet_ParameterIdentifier,6017,Variable -TopologyElementType_MethodSet_MethodIdentifier,6018,Method -DeviceType_ParameterSet_ParameterIdentifier,6020,Variable -DeviceType_MethodSet_MethodIdentifier,6021,Method -BlockType_ParameterSet_ParameterIdentifier,6023,Variable -BlockType_MethodSet_MethodIdentifier,6024,Method -ConfigurableObjectType_ObjectIdentifier,6026,Object -FunctionalGroupType_GroupIdentifier,6027,Object -FunctionalGroupType_ParameterIdentifier,6028,Variable -FunctionalGroupType_MethodIdentifier,6029,Method -ConnectsTo,6030,ReferenceType -IsOnline,6031,ReferenceType -DeviceSet_DeviceName,6032,Object -DeviceSet_DeviceName_ParameterSet,6033,Object -DeviceSet_DeviceName_ParameterSet_ParameterIdentifier,6034,Variable -DeviceSet_DeviceName_MethodSet,6035,Object -DeviceSet_DeviceName_MethodSet_MethodIdentifier,6036,Method -DeviceSet_DeviceName_Identification,6037,Object -DeviceSet_DeviceName_Identification_UIElement,6038,Variable -DeviceSet_DeviceName_Lock,6039,Object -DeviceSet_DeviceName_Lock_LockedStatus,6040,Variable -DeviceSet_DeviceName_Lock_LockingClient,6041,Variable -DeviceSet_DeviceName_Lock_LockingUser,6042,Variable -DeviceSet_DeviceName_Lock_RemainingLockTime,6043,Variable -DeviceSet_DeviceName_Lock_InitLock,6044,Method -DeviceSet_DeviceName_Lock_InitLock_InputArguments,6045,Variable -DeviceSet_DeviceName_Lock_InitLock_OutputArguments,6046,Variable -DeviceSet_DeviceName_Lock_RenewLock,6047,Method -DeviceSet_DeviceName_Lock_RenewLock_OutputArguments,6048,Variable -DeviceSet_DeviceName_Lock_ExitLock,6049,Method -DeviceSet_DeviceName_Lock_ExitLock_OutputArguments,6050,Variable -DeviceSet_DeviceName_Lock_BreakLock,6051,Method -DeviceSet_DeviceName_Lock_BreakLock_OutputArguments,6052,Variable -DeviceSet_DeviceName_EditMode,6053,Object -DeviceSet_DeviceName_EditMode_EnterEditMode,6054,Method -DeviceSet_DeviceName_EditMode_EnterEditMode_InputArguments,6055,Variable -DeviceSet_DeviceName_EditMode_EnterEditMode_OutputArguments,6056,Variable -DeviceSet_DeviceName_EditMode_ExitEditMode,6057,Method -DeviceSet_DeviceName_EditMode_ExitEditMode_OutputArguments,6058,Variable -DeviceSet_DeviceName_EditMode_AbortEditMode,6059,Method -DeviceSet_DeviceName_EditMode_AbortEditMode_OutputArguments,6060,Variable -DeviceSet_DeviceName_SerialNumber,6061,Variable -DeviceSet_DeviceName_RevisionCounter,6062,Variable -DeviceSet_DeviceName_Manufacturer,6063,Variable -DeviceSet_DeviceName_Model,6064,Variable -DeviceSet_DeviceName_DeviceManual,6065,Variable -DeviceSet_DeviceName_DeviceRevision,6066,Variable -DeviceSet_DeviceName_SoftwareRevision,6067,Variable -DeviceSet_DeviceName_HardwareRevision,6068,Variable -DeviceSet_DeviceName_DeviceHealth,6069,Variable -DeviceSet_DeviceName_DeviceTypeImage,6070,Object -DeviceSet_DeviceName_DeviceTypeImage_ImageIdentifier,6071,Variable -DeviceSet_DeviceName_Documentation,6072,Object -DeviceSet_DeviceName_Documentation_DocumentIdentifier,6073,Variable -DeviceSet_DeviceName_ProtocolSupport,6074,Object -DeviceSet_DeviceName_ProtocolSupport_ProtocolSupportIdentifier,6075,Variable -DeviceSet_DeviceName_ImageSet,6076,Object -DeviceSet_DeviceName_ImageSet_ImageIdentifier,6077,Variable -NetworkSet,6078,Object -NetworkSet_NetworkName,6079,Object -NetworkSet_NetworkName_Lock,6080,Object -NetworkSet_NetworkName_Lock_LockedStatus,6081,Variable -NetworkSet_NetworkName_Lock_LockingClient,6082,Variable -NetworkSet_NetworkName_Lock_LockingUser,6083,Variable -NetworkSet_NetworkName_Lock_RemainingLockTime,6084,Variable -NetworkSet_NetworkName_Lock_InitLock,6085,Method -NetworkSet_NetworkName_Lock_InitLock_InputArguments,6086,Variable -NetworkSet_NetworkName_Lock_InitLock_OutputArguments,6087,Variable -NetworkSet_NetworkName_Lock_RenewLock,6088,Method -NetworkSet_NetworkName_Lock_RenewLock_OutputArguments,6089,Variable -NetworkSet_NetworkName_Lock_ExitLock,6090,Method -NetworkSet_NetworkName_Lock_ExitLock_OutputArguments,6091,Variable -NetworkSet_NetworkName_Lock_BreakLock,6092,Method -NetworkSet_NetworkName_Lock_BreakLock_OutputArguments,6093,Variable -DeviceTopology,6094,Object -DeviceTopology_OnlineAccess,6095,Variable -DeviceTopology_NetworkName,6096,Object -DeviceTopology_NetworkName_Lock,6097,Object -DeviceTopology_NetworkName_Lock_LockedStatus,6098,Variable -DeviceTopology_NetworkName_Lock_LockingClient,6099,Variable -DeviceTopology_NetworkName_Lock_LockingUser,6100,Variable -DeviceTopology_NetworkName_Lock_RemainingLockTime,6101,Variable -DeviceTopology_NetworkName_Lock_InitLock,6102,Method -DeviceTopology_NetworkName_Lock_InitLock_InputArguments,6103,Variable -DeviceTopology_NetworkName_Lock_InitLock_OutputArguments,6104,Variable -DeviceTopology_NetworkName_Lock_RenewLock,6105,Method -DeviceTopology_NetworkName_Lock_RenewLock_OutputArguments,6106,Variable -DeviceTopology_NetworkName_Lock_ExitLock,6107,Method -DeviceTopology_NetworkName_Lock_ExitLock_OutputArguments,6108,Variable -DeviceTopology_NetworkName_Lock_BreakLock,6109,Method -DeviceTopology_NetworkName_Lock_BreakLock_OutputArguments,6110,Variable -CommunicationDevices,6111,Object -CommunicationDevices_DeviceName,6112,Object -CommunicationDevices_DeviceName_ParameterSet,6113,Object -CommunicationDevices_DeviceName_ParameterSet_ParameterIdentifier,6114,Variable -CommunicationDevices_DeviceName_MethodSet,6115,Object -CommunicationDevices_DeviceName_MethodSet_MethodIdentifier,6116,Method -CommunicationDevices_DeviceName_Identification,6117,Object -CommunicationDevices_DeviceName_Identification_UIElement,6118,Variable -CommunicationDevices_DeviceName_Lock,6119,Object -CommunicationDevices_DeviceName_Lock_LockedStatus,6120,Variable -CommunicationDevices_DeviceName_Lock_LockingClient,6121,Variable -CommunicationDevices_DeviceName_Lock_LockingUser,6122,Variable -CommunicationDevices_DeviceName_Lock_RemainingLockTime,6123,Variable -CommunicationDevices_DeviceName_Lock_InitLock,6124,Method -CommunicationDevices_DeviceName_Lock_InitLock_InputArguments,6125,Variable -CommunicationDevices_DeviceName_Lock_InitLock_OutputArguments,6126,Variable -CommunicationDevices_DeviceName_Lock_RenewLock,6127,Method -CommunicationDevices_DeviceName_Lock_RenewLock_OutputArguments,6128,Variable -CommunicationDevices_DeviceName_Lock_ExitLock,6129,Method -CommunicationDevices_DeviceName_Lock_ExitLock_OutputArguments,6130,Variable -CommunicationDevices_DeviceName_Lock_BreakLock,6131,Method -CommunicationDevices_DeviceName_Lock_BreakLock_OutputArguments,6132,Variable -CommunicationDevices_DeviceName_EditMode,6133,Object -CommunicationDevices_DeviceName_EditMode_EnterEditMode,6134,Method -CommunicationDevices_DeviceName_EditMode_EnterEditMode_InputArguments,6135,Variable -CommunicationDevices_DeviceName_EditMode_EnterEditMode_OutputArguments,6136,Variable -CommunicationDevices_DeviceName_EditMode_ExitEditMode,6137,Method -CommunicationDevices_DeviceName_EditMode_ExitEditMode_OutputArguments,6138,Variable -CommunicationDevices_DeviceName_EditMode_AbortEditMode,6139,Method -CommunicationDevices_DeviceName_EditMode_AbortEditMode_OutputArguments,6140,Variable -CommunicationDevices_DeviceName_SerialNumber,6141,Variable -CommunicationDevices_DeviceName_RevisionCounter,6142,Variable -CommunicationDevices_DeviceName_Manufacturer,6143,Variable -CommunicationDevices_DeviceName_Model,6144,Variable -CommunicationDevices_DeviceName_DeviceManual,6145,Variable -CommunicationDevices_DeviceName_DeviceRevision,6146,Variable -CommunicationDevices_DeviceName_SoftwareRevision,6147,Variable -CommunicationDevices_DeviceName_HardwareRevision,6148,Variable -CommunicationDevices_DeviceName_DeviceHealth,6149,Variable -CommunicationDevices_DeviceName_DeviceTypeImage,6150,Object -CommunicationDevices_DeviceName_DeviceTypeImage_ImageIdentifier,6151,Variable -CommunicationDevices_DeviceName_Documentation,6152,Object -CommunicationDevices_DeviceName_Documentation_DocumentIdentifier,6153,Variable -CommunicationDevices_DeviceName_ProtocolSupport,6154,Object -CommunicationDevices_DeviceName_ProtocolSupport_ProtocolSupportIdentifier,6155,Variable -CommunicationDevices_DeviceName_ImageSet,6156,Object -CommunicationDevices_DeviceName_ImageSet_ImageIdentifier,6157,Variable -TopologyElementType_GroupName,6158,Object -TopologyElementType_GroupName_UIElement,6159,Variable -TopologyElementType_Identification_UIElement,6160,Variable -TopologyElementType_Lock,6161,Object -TopologyElementType_Lock_LockedStatus,6162,Variable -TopologyElementType_Lock_LockingClient,6163,Variable -TopologyElementType_Lock_LockingUser,6164,Variable -TopologyElementType_Lock_RemainingLockTime,6165,Variable -TopologyElementType_Lock_InitLock,6166,Method -TopologyElementType_Lock_InitLock_InputArguments,6167,Variable -TopologyElementType_Lock_InitLock_OutputArguments,6168,Variable -TopologyElementType_Lock_RenewLock,6169,Method -TopologyElementType_Lock_RenewLock_OutputArguments,6170,Variable -TopologyElementType_Lock_ExitLock,6171,Method -TopologyElementType_Lock_ExitLock_OutputArguments,6172,Variable -TopologyElementType_Lock_BreakLock,6173,Method -TopologyElementType_Lock_BreakLock_OutputArguments,6174,Variable -TopologyElementType_EditMode,6175,Object -TopologyElementType_EditMode_EnterEditMode,6176,Method -TopologyElementType_EditMode_EnterEditMode_InputArguments,6177,Variable -TopologyElementType_EditMode_EnterEditMode_OutputArguments,6178,Variable -TopologyElementType_EditMode_ExitEditMode,6179,Method -TopologyElementType_EditMode_ExitEditMode_OutputArguments,6180,Variable -TopologyElementType_EditMode_AbortEditMode,6181,Method -TopologyElementType_EditMode_AbortEditMode_OutputArguments,6182,Variable -DeviceType_GroupName,6183,Object -DeviceType_GroupName_UIElement,6184,Variable -DeviceType_Identification_UIElement,6185,Variable -DeviceType_Lock,6186,Object -DeviceType_Lock_LockedStatus,6187,Variable -DeviceType_Lock_LockingClient,6188,Variable -DeviceType_Lock_LockingUser,6189,Variable -DeviceType_Lock_RemainingLockTime,6190,Variable -DeviceType_Lock_InitLock,6191,Method -DeviceType_Lock_InitLock_InputArguments,6192,Variable -DeviceType_Lock_InitLock_OutputArguments,6193,Variable -DeviceType_Lock_RenewLock,6194,Method -DeviceType_Lock_RenewLock_OutputArguments,6195,Variable -DeviceType_Lock_ExitLock,6196,Method -DeviceType_Lock_ExitLock_OutputArguments,6197,Variable -DeviceType_Lock_BreakLock,6198,Method -DeviceType_Lock_BreakLock_OutputArguments,6199,Variable -DeviceType_EditMode,6200,Object -DeviceType_EditMode_EnterEditMode,6201,Method -DeviceType_EditMode_EnterEditMode_InputArguments,6202,Variable -DeviceType_EditMode_EnterEditMode_OutputArguments,6203,Variable -DeviceType_EditMode_ExitEditMode,6204,Method -DeviceType_EditMode_ExitEditMode_OutputArguments,6205,Variable -DeviceType_EditMode_AbortEditMode,6206,Method -DeviceType_EditMode_AbortEditMode_OutputArguments,6207,Variable -DeviceType_DeviceHealth,6208,Variable -DeviceType_DeviceTypeImage,6209,Object -DeviceType_DeviceTypeImage_ImageIdentifier,6210,Variable -DeviceType_Documentation,6211,Object -DeviceType_Documentation_DocumentIdentifier,6212,Variable -DeviceType_ProtocolSupport,6213,Object -DeviceType_ProtocolSupport_ProtocolSupportIdentifier,6214,Variable -DeviceType_ImageSet,6215,Object -DeviceType_ImageSet_ImageIdentifier,6216,Variable -BlockType_GroupName,6217,Object -BlockType_GroupName_UIElement,6218,Variable -BlockType_Identification_UIElement,6219,Variable -BlockType_Lock,6220,Object -BlockType_Lock_LockedStatus,6221,Variable -BlockType_Lock_LockingClient,6222,Variable -BlockType_Lock_LockingUser,6223,Variable -BlockType_Lock_RemainingLockTime,6224,Variable -BlockType_Lock_InitLock,6225,Method -BlockType_Lock_InitLock_InputArguments,6226,Variable -BlockType_Lock_InitLock_OutputArguments,6227,Variable -BlockType_Lock_RenewLock,6228,Method -BlockType_Lock_RenewLock_OutputArguments,6229,Variable -BlockType_Lock_ExitLock,6230,Method -BlockType_Lock_ExitLock_OutputArguments,6231,Variable -BlockType_Lock_BreakLock,6232,Method -BlockType_Lock_BreakLock_OutputArguments,6233,Variable -BlockType_EditMode,6234,Object -BlockType_EditMode_EnterEditMode,6235,Method -BlockType_EditMode_EnterEditMode_InputArguments,6236,Variable -BlockType_EditMode_EnterEditMode_OutputArguments,6237,Variable -BlockType_EditMode_ExitEditMode,6238,Method -BlockType_EditMode_ExitEditMode_OutputArguments,6239,Variable -BlockType_EditMode_AbortEditMode,6240,Method -BlockType_EditMode_AbortEditMode_OutputArguments,6241,Variable -FunctionalGroupType_GroupIdentifier_UIElement,6242,Variable -FunctionalGroupType_UIElement,6243,Variable -DeviceHealthEnumeration,6244,DataType -UIElementType,6246,VariableType -NetworkType,6247,ObjectType -NetworkType_CPIdentifier,6248,Object -NetworkType_CPIdentifier_ParameterSet,6249,Object -NetworkType_CPIdentifier_ParameterSet_ParameterIdentifier,6250,Variable -NetworkType_CPIdentifier_MethodSet,6251,Object -NetworkType_CPIdentifier_MethodSet_MethodIdentifier,6252,Method -NetworkType_CPIdentifier_Identification,6253,Object -NetworkType_CPIdentifier_Identification_UIElement,6254,Variable -NetworkType_CPIdentifier_Lock,6255,Object -NetworkType_CPIdentifier_Lock_LockedStatus,6256,Variable -NetworkType_CPIdentifier_Lock_LockingClient,6257,Variable -NetworkType_CPIdentifier_Lock_LockingUser,6258,Variable -NetworkType_CPIdentifier_Lock_RemainingLockTime,6259,Variable -NetworkType_CPIdentifier_Lock_InitLock,6260,Method -NetworkType_CPIdentifier_Lock_InitLock_InputArguments,6261,Variable -NetworkType_CPIdentifier_Lock_InitLock_OutputArguments,6262,Variable -NetworkType_CPIdentifier_Lock_RenewLock,6263,Method -NetworkType_CPIdentifier_Lock_RenewLock_OutputArguments,6264,Variable -NetworkType_CPIdentifier_Lock_ExitLock,6265,Method -NetworkType_CPIdentifier_Lock_ExitLock_OutputArguments,6266,Variable -NetworkType_CPIdentifier_Lock_BreakLock,6267,Method -NetworkType_CPIdentifier_Lock_BreakLock_OutputArguments,6268,Variable -NetworkType_CPIdentifier_EditMode,6269,Object -NetworkType_CPIdentifier_EditMode_EnterEditMode,6270,Method -NetworkType_CPIdentifier_EditMode_EnterEditMode_InputArguments,6271,Variable -NetworkType_CPIdentifier_EditMode_EnterEditMode_OutputArguments,6272,Variable -NetworkType_CPIdentifier_EditMode_ExitEditMode,6273,Method -NetworkType_CPIdentifier_EditMode_ExitEditMode_OutputArguments,6274,Variable -NetworkType_CPIdentifier_EditMode_AbortEditMode,6275,Method -NetworkType_CPIdentifier_EditMode_AbortEditMode_OutputArguments,6276,Variable -NetworkType_CPIdentifier_NetworkIdentifier,6277,Object -NetworkType_CPIdentifier_NetworkIdentifier_Lock,6278,Object -NetworkType_CPIdentifier_NetworkIdentifier_Lock_LockedStatus,6279,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_LockingClient,6280,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_LockingUser,6281,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_RemainingLockTime,6282,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_InitLock,6283,Method -NetworkType_CPIdentifier_NetworkIdentifier_Lock_InitLock_InputArguments,6284,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_InitLock_OutputArguments,6285,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_RenewLock,6286,Method -NetworkType_CPIdentifier_NetworkIdentifier_Lock_RenewLock_OutputArguments,6287,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_ExitLock,6288,Method -NetworkType_CPIdentifier_NetworkIdentifier_Lock_ExitLock_OutputArguments,6289,Variable -NetworkType_CPIdentifier_NetworkIdentifier_Lock_BreakLock,6290,Method -NetworkType_CPIdentifier_NetworkIdentifier_Lock_BreakLock_OutputArguments,6291,Variable -NetworkType_CPIdentifier_NetworkAddress,6292,Object -NetworkType_CPIdentifier_NetworkAddress_UIElement,6293,Variable -NetworkType_Lock,6294,Object -NetworkType_Lock_LockedStatus,6295,Variable -NetworkType_Lock_LockingClient,6296,Variable -NetworkType_Lock_LockingUser,6297,Variable -NetworkType_Lock_RemainingLockTime,6298,Variable -NetworkType_Lock_InitLock,6299,Method -NetworkType_Lock_InitLock_InputArguments,6300,Variable -NetworkType_Lock_InitLock_OutputArguments,6301,Variable -NetworkType_Lock_RenewLock,6302,Method -NetworkType_Lock_RenewLock_OutputArguments,6303,Variable -NetworkType_Lock_ExitLock,6304,Method -NetworkType_Lock_ExitLock_OutputArguments,6305,Variable -NetworkType_Lock_BreakLock,6306,Method -NetworkType_Lock_BreakLock_OutputArguments,6307,Variable -ConnectionPointType,6308,ObjectType -ConnectionPointType_ParameterSet,6309,Object -ConnectionPointType_ParameterSet_ParameterIdentifier,6310,Variable -ConnectionPointType_MethodSet,6311,Object -ConnectionPointType_MethodSet_MethodIdentifier,6312,Method -ConnectionPointType_GroupName,6313,Object -ConnectionPointType_GroupName_UIElement,6314,Variable -ConnectionPointType_Identification,6315,Object -ConnectionPointType_Identification_UIElement,6316,Variable -ConnectionPointType_Lock,6317,Object -ConnectionPointType_Lock_LockedStatus,6318,Variable -ConnectionPointType_Lock_LockingClient,6319,Variable -ConnectionPointType_Lock_LockingUser,6320,Variable -ConnectionPointType_Lock_RemainingLockTime,6321,Variable -ConnectionPointType_Lock_InitLock,6322,Method -ConnectionPointType_Lock_InitLock_InputArguments,6323,Variable -ConnectionPointType_Lock_InitLock_OutputArguments,6324,Variable -ConnectionPointType_Lock_RenewLock,6325,Method -ConnectionPointType_Lock_RenewLock_OutputArguments,6326,Variable -ConnectionPointType_Lock_ExitLock,6327,Method -ConnectionPointType_Lock_ExitLock_OutputArguments,6328,Variable -ConnectionPointType_Lock_BreakLock,6329,Method -ConnectionPointType_Lock_BreakLock_OutputArguments,6330,Variable -ConnectionPointType_EditMode,6331,Object -ConnectionPointType_EditMode_EnterEditMode,6332,Method -ConnectionPointType_EditMode_EnterEditMode_InputArguments,6333,Variable -ConnectionPointType_EditMode_EnterEditMode_OutputArguments,6334,Variable -ConnectionPointType_EditMode_ExitEditMode,6335,Method -ConnectionPointType_EditMode_ExitEditMode_OutputArguments,6336,Variable -ConnectionPointType_EditMode_AbortEditMode,6337,Method -ConnectionPointType_EditMode_AbortEditMode_OutputArguments,6338,Variable -ConnectionPointType_NetworkIdentifier,6339,Object -ConnectionPointType_NetworkIdentifier_Lock,6340,Object -ConnectionPointType_NetworkIdentifier_Lock_LockedStatus,6341,Variable -ConnectionPointType_NetworkIdentifier_Lock_LockingClient,6342,Variable -ConnectionPointType_NetworkIdentifier_Lock_LockingUser,6343,Variable -ConnectionPointType_NetworkIdentifier_Lock_RemainingLockTime,6344,Variable -ConnectionPointType_NetworkIdentifier_Lock_InitLock,6345,Method -ConnectionPointType_NetworkIdentifier_Lock_InitLock_InputArguments,6346,Variable -ConnectionPointType_NetworkIdentifier_Lock_InitLock_OutputArguments,6347,Variable -ConnectionPointType_NetworkIdentifier_Lock_RenewLock,6348,Method -ConnectionPointType_NetworkIdentifier_Lock_RenewLock_OutputArguments,6349,Variable -ConnectionPointType_NetworkIdentifier_Lock_ExitLock,6350,Method -ConnectionPointType_NetworkIdentifier_Lock_ExitLock_OutputArguments,6351,Variable -ConnectionPointType_NetworkIdentifier_Lock_BreakLock,6352,Method -ConnectionPointType_NetworkIdentifier_Lock_BreakLock_OutputArguments,6353,Variable -ConnectionPointType_NetworkAddress,6354,Object -ConnectionPointType_NetworkAddress_UIElement,6355,Variable -OnlineElementType,6356,ObjectType -OnlineElementType_ParameterSet,6357,Object -OnlineElementType_ParameterSet_ParameterIdentifier,6358,Variable -OnlineElementType_MethodSet,6359,Object -OnlineElementType_MethodSet_MethodIdentifier,6360,Method -OnlineElementType_GroupName,6361,Object -OnlineElementType_GroupName_UIElement,6362,Variable -OnlineElementType_Identification,6363,Object -OnlineElementType_Identification_UIElement,6364,Variable -OnlineElementType_Lock,6365,Object -OnlineElementType_Lock_LockedStatus,6366,Variable -OnlineElementType_Lock_LockingClient,6367,Variable -OnlineElementType_Lock_LockingUser,6368,Variable -OnlineElementType_Lock_RemainingLockTime,6369,Variable -OnlineElementType_Lock_InitLock,6370,Method -OnlineElementType_Lock_InitLock_InputArguments,6371,Variable -OnlineElementType_Lock_InitLock_OutputArguments,6372,Variable -OnlineElementType_Lock_RenewLock,6373,Method -OnlineElementType_Lock_RenewLock_OutputArguments,6374,Variable -OnlineElementType_Lock_ExitLock,6375,Method -OnlineElementType_Lock_ExitLock_OutputArguments,6376,Variable -OnlineElementType_Lock_BreakLock,6377,Method -OnlineElementType_Lock_BreakLock_OutputArguments,6378,Variable -OnlineElementType_EditMode,6379,Object -OnlineElementType_EditMode_EnterEditMode,6380,Method -OnlineElementType_EditMode_EnterEditMode_InputArguments,6381,Variable -OnlineElementType_EditMode_EnterEditMode_OutputArguments,6382,Variable -OnlineElementType_EditMode_ExitEditMode,6383,Method -OnlineElementType_EditMode_ExitEditMode_OutputArguments,6384,Variable -OnlineElementType_EditMode_AbortEditMode,6385,Method -OnlineElementType_EditMode_AbortEditMode_OutputArguments,6386,Variable -MaxInactiveLockTime,6387,Variable -LockingServicesType,6388,ObjectType -LockingServicesType_LockedStatus,6389,Variable -LockingServicesType_LockingClient,6390,Variable -LockingServicesType_LockingUser,6391,Variable -LockingServicesType_RemainingLockTime,6392,Variable -LockingServicesType_InitLock,6393,Method -LockingServicesType_InitLock_InputArguments,6394,Variable -LockingServicesType_InitLock_OutputArguments,6395,Variable -LockingServicesType_RenewLock,6396,Method -LockingServicesType_RenewLock_OutputArguments,6397,Variable -LockingServicesType_ExitLock,6398,Method -LockingServicesType_ExitLock_OutputArguments,6399,Variable -LockingServicesType_BreakLock,6400,Method -LockingServicesType_BreakLock_OutputArguments,6401,Variable -EditModeType,6402,ObjectType -EditModeType_EnterEditMode,6403,Method -EditModeType_EnterEditMode_InputArguments,6404,Variable -EditModeType_EnterEditMode_OutputArguments,6405,Variable -EditModeType_ExitEditMode,6406,Method -EditModeType_ExitEditMode_OutputArguments,6407,Variable -EditModeType_AbortEditMode,6408,Method -EditModeType_AbortEditMode_OutputArguments,6409,Variable -TransferToDevice,6410,Method -TransferToDevice_OutputArguments,6411,Variable -TransferFromDevice,6412,Method -TransferFromDevice_OutputArguments,6413,Variable -FetchTransferResultData,6414,Method -FetchTransferResultData_InputArguments,6415,Variable -FetchTransferResultData_OutputArguments,6416,Variable -TransferStatusType,6417,DataType -TransferResult,6418,DataType -ParameterResult,6419,DataType -TransferStatusType_Encoding_DefaultXml,6420,Object -TransferResult_Encoding_DefaultXml,6421,Object -ParameterResult_Encoding_DefaultXml,6422,Object -OpcUaDi_XmlSchema,6423,Variable -OpcUaDi_XmlSchema_DataTypeVersion,6424,Variable -OpcUaDi_XmlSchema_NamespaceUri,6425,Variable -OpcUaDi_XmlSchema_TransferStatusType,6426,Variable -OpcUaDi_XmlSchema_TransferStatusType_DataTypeVersion,6427,Variable -OpcUaDi_XmlSchema_TransferStatusType_DictionaryFragment,6428,Variable -OpcUaDi_XmlSchema_TransferResult,6429,Variable -OpcUaDi_XmlSchema_TransferResult_DataTypeVersion,6430,Variable -OpcUaDi_XmlSchema_TransferResult_DictionaryFragment,6431,Variable -TransferStatusType_Encoding_DefaultBinary,6432,Object -TransferResult_Encoding_DefaultBinary,6433,Object -ParameterResult_Encoding_DefaultBinary,6434,Object -OpcUaDi_BinarySchema,6435,Variable -OpcUaDi_BinarySchema_DataTypeVersion,6436,Variable -OpcUaDi_BinarySchema_NamespaceUri,6437,Variable -OpcUaDi_BinarySchema_TransferStatusType,6438,Variable -OpcUaDi_BinarySchema_TransferStatusType_DataTypeVersion,6439,Variable -OpcUaDi_BinarySchema_TransferStatusType_DictionaryFragment,6440,Variable -OpcUaDi_BinarySchema_TransferResult,6441,Variable -OpcUaDi_BinarySchema_TransferResult_DataTypeVersion,6442,Variable -OpcUaDi_BinarySchema_TransferResult_DictionaryFragment,6443,Variable -OpcUaDi_XmlSchema_ParameterResult,6444,Variable -OpcUaDi_XmlSchema_ParameterResult_DataTypeVersion,6445,Variable -OpcUaDi_XmlSchema_ParameterResult_DictionaryFragment,6446,Variable -OpcUaDi_BinarySchema_ParameterResult,6447,Variable -OpcUaDi_BinarySchema_ParameterResult_DataTypeVersion,6448,Variable -OpcUaDi_BinarySchema_ParameterResult_DictionaryFragment,6449,Variable -DeviceHealthEnumeration_EnumStrings,6450,Variable -EnterEditModeMethodType,6451,Method -EnterEditModeMethodType_InputArguments,6452,Variable -EnterEditModeMethodType_OutputArguments,6453,Variable -ExitEditModeMethodType,6454,Method -ExitEditModeMethodType_OutputArguments,6455,Variable -AbortEditModeErrorMethodType,6456,Method -AbortEditModeErrorMethodType_OutputArguments,6457,Variable -InitLockMethodType,6458,Method -InitLockMethodType_InputArguments,6459,Variable -InitLockMethodType_OutputArguments,6460,Variable -RenewLockMethodType,6461,Method -RenewLockMethodType_OutputArguments,6462,Variable -ExitLockMethodType,6463,Method -ExitLockMethodType_OutputArguments,6464,Variable -BreakLockMethodType,6465,Method -BreakLockMethodType_OutputArguments,6466,Variable diff --git a/ModelCompiler/Design/OpcUaDiModelv11.xml b/ModelCompiler/Design/OpcUaDiModelv11.xml deleted file mode 100644 index 444028cf..00000000 --- a/ModelCompiler/Design/OpcUaDiModelv11.xml +++ /dev/null @@ -1,442 +0,0 @@ - - - - - http://opcfoundation.org/UA/DI/ - http://opcfoundation.org/UA/ - - - The semantic is to indicate that the target Node is used for the source Node of the Reference - UsedBy - - - Used to indicate that source and target Node have a topological connection. - - - Used to bind the offline representation of a Device to the online representation. - OnlineOf - - - Contains all instances of devices - - - <DeviceName> - A device object. - - - - - OpcUa:Organizes - OpcUa:ObjectsFolder - - - - - Contains all instances of communication networks - - - <NetworkName> - A network object. - - - - - OpcUa:Organizes - OpcUa:ObjectsFolder - - - - - Starting point of the configured device topology. - - - Hint of whether the Server is currently able to communicate to Devices in the topology. - - - <NetworkName> - A network object. - - - - - OpcUa:Organizes - OpcUa:ObjectsFolder - - - - - Contains all instances of devices that can be used to communicate. - - - <DeviceName> - A device object. - - - - - OpcUa:Organizes - OpcUa:ObjectsFolder - - - - - Defines the basic information components for all configurable elements in a device topology - - - Flat list of Parameters - - - <ParameterIdentifier> - A parameter which belongs to the topology element. - - - - - Flat list of Methods - - - <MethodIdentifier> - A method which belongs to the topology element. - - - - - <GroupIdentifier> - An application specific functional group used to organize parameters and methods. - - - Used to organize parameters for identification of this TopologyElement - - - Used to lock the topology element. - - - Used to work with the topology element in a sandbox. - - - - - Defines the basic information components for all configurable elements in a device topology - - - Identifier that uniquely identifies, within a manufacturer, a device instance - - - An incremental counter indicating the number of times the static data within the Device has been modified - - - Name of the company that manufactured the device - - - Model name of the device - - - Address (pathname in the file system or a URL | Web address) of user manual for the device - - - Overall revision level of the device - - - Revision level of the software/firmware of the device - - - Revision level of the hardware of the device - - - Status of a device as defined by NAMUR Recommendation NE107. - - - Organizes pictures of the device. - - - <ImageIdentifier> - An image of the device. - - - - - Organizes documents for the device. - - - <DocumentIdentifier> - A document for the device. - - - - - Protocol-specific files for the device. - - - <ProtocolSupportIdentifier> - A protocol-specific file for the device. - - - - - Organizes images that are used within UIElements. - - - <ImageIdentifier> - An image for a UIElement. - - - - - - - Adds the concept of Blocks needed for block-oriented FieldDevices - - - Incremental counter indicating the number of times the static data within the Block has been modified - - - Current mode of operation the Block is able to achieve - - - Modes of operation that are allowed for the Block based on application requirements - - - Mode the Block should be set to during normal operating conditions - - - Mode of operation that is desired for the Block - - - - - Defines a general pattern to expose and configure modular components - - - Folder maintaining the set of (sub-types of) BaseObjectTypes that can be instantiated in the ConfigurableComponent - - - <ObjectIdentifier> - - - - - FolderType is used to organize the Parameters and Methods from the complete set (ParameterSet, MethodSet) with regard to their application - - - <GroupIdentifier> - An application specific functional group used to organize parameters and methods. - - - <ParameterIdentifier> - A parameter which belongs to the group. - OpcUa:Organizes - - - <MethodIdentifier> - A method which belongs to the group. - OpcUa:Organizes - - - A user interface element assigned to this group. - - - - - General structure of a Protocol ObjectType - - - - - This device functions normally. - - - Malfunction of the device or any of its peripherals. - - - Functional checks are currently performed. - - - The device is currently working outside of its specified range or that internal diagnoses indicate deviations from measured or set values. - - - This element is working, but a maintenance operation is required. - - - - - The base type for all UI Element Types.. - - - Represents the communication means for Devices that are connected to it. - - - <CPIdentifier> - The ConnectionPoint(s) that have been configured for this Network. - DI:ConnectsTo - - - Used to lock the Network. - - - - - DI:Uses - DI:ProtocolType - - - - - Represents the interface (interface card) of a Device to a Network. - - - <CPIdentifier> - The Network to which this CP is connected to. - DI:ConnectsTo - - - The address of the device on this network. - - - - - OpcUa:HasComponent - DI:DeviceType - - - DI:Uses - DI:ProtocolType - - - - - Represents the online data for a topology element. - - - Server-specific period of time in milliseconds until the Server will revoke a lock. - - - OpcUa:HasProperty - OpcUa:Server_ServerCapabilities - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An interface for Locking. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An interface that supports working in a sandbox. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ModelCompiler/Design/OpcUaFdiPart5Model.xml b/ModelCompiler/Design/OpcUaFdiPart5Model.xml index db47c4d3..d61b6f93 100644 --- a/ModelCompiler/Design/OpcUaFdiPart5Model.xml +++ b/ModelCompiler/Design/OpcUaFdiPart5Model.xml @@ -1,5 +1,6 @@ - +> http://fdi-cooperation.com/OPCUA/FDI5/ http://opcfoundation.org/UA/DI/ @@ -33,7 +33,7 @@ - 2017-07-14 + 2017-07-14T00:00:00Z" diff --git a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.csv b/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.csv deleted file mode 100644 index e2c588e8..00000000 --- a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.csv +++ /dev/null @@ -1,2144 +0,0 @@ -CommunicationServerTypeInitializeMethodType,1,Method -CommunicationServerTypeInitializeMethodType_OutputArguments,2,Variable -CommunicationServerTypeResetMethodType,3,Method -CommunicationServerTypeResetMethodType_OutputArguments,4,Variable -AddComponentMethodType,5,Method -AddComponentMethodType_InputArguments,6,Variable -AddComponentMethodType_OutputArguments,7,Variable -RemoveComponentMethodType,8,Method -RemoveComponentMethodType_InputArguments,9,Variable -RemoveComponentMethodType_OutputArguments,10,Variable -CommunicationServerType,11,ObjectType -CommunicationServerType_ParameterSet,12,Object -CommunicationServerType_ParameterSet_ParameterIdentifier,13,Variable -CommunicationServerType_MethodSet,14,Object -CommunicationServerType_MethodSet_MethodIdentifier,15,Method -CommunicationServerType_GroupIdentifier,16,Object -CommunicationServerType_GroupIdentifier_UIElement,17,Variable -CommunicationServerType_Identification,18,Object -CommunicationServerType_Identification_UIElement,19,Variable -CommunicationServerType_Lock,20,Object -CommunicationServerType_Lock_Locked,21,Variable -CommunicationServerType_Lock_LockingClient,22,Variable -CommunicationServerType_Lock_LockingUser,23,Variable -CommunicationServerType_Lock_RemainingLockTime,24,Variable -CommunicationServerType_Lock_InitLock,25,Method -CommunicationServerType_Lock_InitLock_InputArguments,26,Variable -CommunicationServerType_Lock_InitLock_OutputArguments,27,Variable -CommunicationServerType_Lock_RenewLock,28,Method -CommunicationServerType_Lock_RenewLock_OutputArguments,29,Variable -CommunicationServerType_Lock_ExitLock,30,Method -CommunicationServerType_Lock_ExitLock_OutputArguments,31,Variable -CommunicationServerType_Lock_BreakLock,32,Method -CommunicationServerType_Lock_BreakLock_OutputArguments,33,Variable -CommunicationServerType_SerialNumber,34,Variable -CommunicationServerType_RevisionCounter,35,Variable -CommunicationServerType_Manufacturer,36,Variable -CommunicationServerType_Model,37,Variable -CommunicationServerType_DeviceManual,38,Variable -CommunicationServerType_DeviceRevision,39,Variable -CommunicationServerType_SoftwareRevision,40,Variable -CommunicationServerType_HardwareRevision,41,Variable -CommunicationServerType_DeviceClass,42,Variable -CommunicationServerType_DeviceHealth,43,Variable -CommunicationServerType_DeviceTypeImage,44,Object -CommunicationServerType_DeviceTypeImage_ImageIdentifier,45,Variable -CommunicationServerType_Documentation,46,Object -CommunicationServerType_Documentation_DocumentIdentifier,47,Variable -CommunicationServerType_ProtocolSupport,48,Object -CommunicationServerType_ProtocolSupport_ProtocolSupportIdentifier,49,Variable -CommunicationServerType_ImageSet,50,Object -CommunicationServerType_ImageSet_ImageIdentifier,51,Variable -CommunicationServerType_CPIdentifier,52,Object -CommunicationServerType_CPIdentifier_ParameterSet,53,Object -CommunicationServerType_CPIdentifier_ParameterSet_ParameterIdentifier,54,Variable -CommunicationServerType_CPIdentifier_MethodSet,55,Object -CommunicationServerType_CPIdentifier_MethodSet_MethodIdentifier,56,Method -CommunicationServerType_CPIdentifier_Identification,57,Object -CommunicationServerType_CPIdentifier_Identification_UIElement,58,Variable -CommunicationServerType_CPIdentifier_Lock,59,Object -CommunicationServerType_CPIdentifier_Lock_Locked,60,Variable -CommunicationServerType_CPIdentifier_Lock_LockingClient,61,Variable -CommunicationServerType_CPIdentifier_Lock_LockingUser,62,Variable -CommunicationServerType_CPIdentifier_Lock_RemainingLockTime,63,Variable -CommunicationServerType_CPIdentifier_Lock_InitLock,64,Method -CommunicationServerType_CPIdentifier_Lock_InitLock_InputArguments,65,Variable -CommunicationServerType_CPIdentifier_Lock_InitLock_OutputArguments,66,Variable -CommunicationServerType_CPIdentifier_Lock_RenewLock,67,Method -CommunicationServerType_CPIdentifier_Lock_RenewLock_OutputArguments,68,Variable -CommunicationServerType_CPIdentifier_Lock_ExitLock,69,Method -CommunicationServerType_CPIdentifier_Lock_ExitLock_OutputArguments,70,Variable -CommunicationServerType_CPIdentifier_Lock_BreakLock,71,Method -CommunicationServerType_CPIdentifier_Lock_BreakLock_OutputArguments,72,Variable -CommunicationServerType_CPIdentifier_NetworkAddress,73,Object -CommunicationServerType_CPIdentifier_NetworkAddress_UIElement,74,Variable -CommunicationServerType_MethodSet_Initialize,75,Method -CommunicationServerType_MethodSet_Initialize_OutputArguments,76,Variable -CommunicationServerType_MethodSet_Reset,77,Method -CommunicationServerType_MethodSet_Reset_OutputArguments,78,Variable -CommunicationServerType_MethodSet_AddComponent,79,Method -CommunicationServerType_MethodSet_AddComponent_InputArguments,80,Variable -CommunicationServerType_MethodSet_AddComponent_OutputArguments,81,Variable -CommunicationServerType_MethodSet_RemoveComponent,82,Method -CommunicationServerType_MethodSet_RemoveComponent_InputArguments,83,Variable -CommunicationServerType_MethodSet_RemoveComponent_OutputArguments,84,Variable -CommunicationServerType_SubDevices,85,Object -ScanMethodType,86,Method -ScanMethodType_OutputArguments,87,Variable -ResetScanMethodType,88,Method -ResetScanMethodType_OutputArguments,89,Variable -ServerCommunicationDeviceType,93,ObjectType -ServerCommunicationDeviceType_ParameterSet,94,Object -ServerCommunicationDeviceType_ParameterSet_ParameterIdentifier,95,Variable -ServerCommunicationDeviceType_MethodSet,96,Object -ServerCommunicationDeviceType_MethodSet_MethodIdentifier,97,Method -ServerCommunicationDeviceType_GroupIdentifier,98,Object -ServerCommunicationDeviceType_GroupIdentifier_UIElement,99,Variable -ServerCommunicationDeviceType_Identification,100,Object -ServerCommunicationDeviceType_Identification_UIElement,101,Variable -ServerCommunicationDeviceType_Lock,102,Object -ServerCommunicationDeviceType_Lock_Locked,103,Variable -ServerCommunicationDeviceType_Lock_LockingClient,104,Variable -ServerCommunicationDeviceType_Lock_LockingUser,105,Variable -ServerCommunicationDeviceType_Lock_RemainingLockTime,106,Variable -ServerCommunicationDeviceType_Lock_InitLock,107,Method -ServerCommunicationDeviceType_Lock_InitLock_InputArguments,108,Variable -ServerCommunicationDeviceType_Lock_InitLock_OutputArguments,109,Variable -ServerCommunicationDeviceType_Lock_RenewLock,110,Method -ServerCommunicationDeviceType_Lock_RenewLock_OutputArguments,111,Variable -ServerCommunicationDeviceType_Lock_ExitLock,112,Method -ServerCommunicationDeviceType_Lock_ExitLock_OutputArguments,113,Variable -ServerCommunicationDeviceType_Lock_BreakLock,114,Method -ServerCommunicationDeviceType_Lock_BreakLock_OutputArguments,115,Variable -ServerCommunicationDeviceType_SerialNumber,116,Variable -ServerCommunicationDeviceType_RevisionCounter,117,Variable -ServerCommunicationDeviceType_Manufacturer,118,Variable -ServerCommunicationDeviceType_Model,119,Variable -ServerCommunicationDeviceType_DeviceManual,120,Variable -ServerCommunicationDeviceType_DeviceRevision,121,Variable -ServerCommunicationDeviceType_SoftwareRevision,122,Variable -ServerCommunicationDeviceType_HardwareRevision,123,Variable -ServerCommunicationDeviceType_DeviceClass,124,Variable -ServerCommunicationDeviceType_DeviceHealth,125,Variable -ServerCommunicationDeviceType_DeviceTypeImage,126,Object -ServerCommunicationDeviceType_DeviceTypeImage_ImageIdentifier,127,Variable -ServerCommunicationDeviceType_Documentation,128,Object -ServerCommunicationDeviceType_Documentation_DocumentIdentifier,129,Variable -ServerCommunicationDeviceType_ProtocolSupport,130,Object -ServerCommunicationDeviceType_ProtocolSupport_ProtocolSupportIdentifier,131,Variable -ServerCommunicationDeviceType_ImageSet,132,Object -ServerCommunicationDeviceType_ImageSet_ImageIdentifier,133,Variable -ServerCommunicationDeviceType_CPIdentifier,134,Object -ServerCommunicationDeviceType_CPIdentifier_ParameterSet,135,Object -ServerCommunicationDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,136,Variable -ServerCommunicationDeviceType_CPIdentifier_MethodSet,137,Object -ServerCommunicationDeviceType_CPIdentifier_MethodSet_MethodIdentifier,138,Method -ServerCommunicationDeviceType_CPIdentifier_Identification,139,Object -ServerCommunicationDeviceType_CPIdentifier_Identification_UIElement,140,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock,141,Object -ServerCommunicationDeviceType_CPIdentifier_Lock_Locked,142,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_LockingClient,143,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_LockingUser,144,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_RemainingLockTime,145,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_InitLock,146,Method -ServerCommunicationDeviceType_CPIdentifier_Lock_InitLock_InputArguments,147,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,148,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_RenewLock,149,Method -ServerCommunicationDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,150,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_ExitLock,151,Method -ServerCommunicationDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,152,Variable -ServerCommunicationDeviceType_CPIdentifier_Lock_BreakLock,153,Method -ServerCommunicationDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,154,Variable -ServerCommunicationDeviceType_CPIdentifier_NetworkAddress,155,Object -ServerCommunicationDeviceType_CPIdentifier_NetworkAddress_UIElement,156,Variable -ServerCommunicationDeviceType_MethodSet_Scan,157,Method -ServerCommunicationDeviceType_MethodSet_Scan_OutputArguments,158,Variable -ServerCommunicationDeviceType_MethodSet_ResetScan,159,Method -ServerCommunicationDeviceType_MethodSet_ResetScan_OutputArguments,160,Variable -ServerCommunicationDeviceType_MethodSet_AddComponent,164,Method -ServerCommunicationDeviceType_MethodSet_AddComponent_InputArguments,165,Variable -ServerCommunicationDeviceType_MethodSet_AddComponent_OutputArguments,166,Variable -ServerCommunicationDeviceType_MethodSet_RemoveComponent,167,Method -ServerCommunicationDeviceType_MethodSet_RemoveComponent_InputArguments,168,Variable -ServerCommunicationDeviceType_MethodSet_RemoveComponent_OutputArguments,169,Variable -DisconnectMethodType,224,Method -DisconnectMethodType_InputArguments,225,Variable -DisconnectMethodType_OutputArguments,226,Variable -ServerCommunicationServiceType,233,ObjectType -ServerCommunicationServiceType_ParameterSet,234,Object -ServerCommunicationServiceType_ParameterSet_ParameterIdentifier,235,Variable -ServerCommunicationServiceType_MethodSet,236,Object -ServerCommunicationServiceType_MethodSet_MethodIdentifier,237,Method -ServerCommunicationServiceType_GroupIdentifier,238,Object -ServerCommunicationServiceType_GroupIdentifier_UIElement,239,Variable -ServerCommunicationServiceType_Identification,240,Object -ServerCommunicationServiceType_Identification_UIElement,241,Variable -ServerCommunicationServiceType_Lock,242,Object -ServerCommunicationServiceType_Lock_Locked,243,Variable -ServerCommunicationServiceType_Lock_LockingClient,244,Variable -ServerCommunicationServiceType_Lock_LockingUser,245,Variable -ServerCommunicationServiceType_Lock_RemainingLockTime,246,Variable -ServerCommunicationServiceType_Lock_InitLock,247,Method -ServerCommunicationServiceType_Lock_InitLock_InputArguments,248,Variable -ServerCommunicationServiceType_Lock_InitLock_OutputArguments,249,Variable -ServerCommunicationServiceType_Lock_RenewLock,250,Method -ServerCommunicationServiceType_Lock_RenewLock_OutputArguments,251,Variable -ServerCommunicationServiceType_Lock_ExitLock,252,Method -ServerCommunicationServiceType_Lock_ExitLock_OutputArguments,253,Variable -ServerCommunicationServiceType_Lock_BreakLock,254,Method -ServerCommunicationServiceType_Lock_BreakLock_OutputArguments,255,Variable -ServerCommunicationServiceType_SerialNumber,256,Variable -ServerCommunicationServiceType_RevisionCounter,257,Variable -ServerCommunicationServiceType_Manufacturer,258,Variable -ServerCommunicationServiceType_Model,259,Variable -ServerCommunicationServiceType_DeviceManual,260,Variable -ServerCommunicationServiceType_DeviceRevision,261,Variable -ServerCommunicationServiceType_SoftwareRevision,262,Variable -ServerCommunicationServiceType_HardwareRevision,263,Variable -ServerCommunicationServiceType_DeviceClass,264,Variable -ServerCommunicationServiceType_DeviceHealth,265,Variable -ServerCommunicationServiceType_DeviceTypeImage,266,Object -ServerCommunicationServiceType_DeviceTypeImage_ImageIdentifier,267,Variable -ServerCommunicationServiceType_Documentation,268,Object -ServerCommunicationServiceType_Documentation_DocumentIdentifier,269,Variable -ServerCommunicationServiceType_ProtocolSupport,270,Object -ServerCommunicationServiceType_ProtocolSupport_ProtocolSupportIdentifier,271,Variable -ServerCommunicationServiceType_ImageSet,272,Object -ServerCommunicationServiceType_ImageSet_ImageIdentifier,273,Variable -ServerCommunicationServiceType_CPIdentifier,274,Object -ServerCommunicationServiceType_CPIdentifier_ParameterSet,275,Object -ServerCommunicationServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,276,Variable -ServerCommunicationServiceType_CPIdentifier_MethodSet,277,Object -ServerCommunicationServiceType_CPIdentifier_MethodSet_MethodIdentifier,278,Method -ServerCommunicationServiceType_CPIdentifier_Identification,279,Object -ServerCommunicationServiceType_CPIdentifier_Identification_UIElement,280,Variable -ServerCommunicationServiceType_CPIdentifier_Lock,281,Object -ServerCommunicationServiceType_CPIdentifier_Lock_Locked,282,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_LockingClient,283,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_LockingUser,284,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_RemainingLockTime,285,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_InitLock,286,Method -ServerCommunicationServiceType_CPIdentifier_Lock_InitLock_InputArguments,287,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_InitLock_OutputArguments,288,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_RenewLock,289,Method -ServerCommunicationServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,290,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_ExitLock,291,Method -ServerCommunicationServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,292,Variable -ServerCommunicationServiceType_CPIdentifier_Lock_BreakLock,293,Method -ServerCommunicationServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,294,Variable -ServerCommunicationServiceType_CPIdentifier_NetworkAddress,295,Object -ServerCommunicationServiceType_CPIdentifier_NetworkAddress_UIElement,296,Variable -ServerCommunicationServiceType_MethodSet_Disconnect,300,Method -ServerCommunicationServiceType_MethodSet_Disconnect_InputArguments,301,Variable -ServerCommunicationServiceType_MethodSet_Disconnect_OutputArguments,302,Variable -SetAddressMethodFFH1Type,309,Method -SetAddressMethodFFH1Type_InputArguments,310,Variable -SetAddressMethodFFH1Type_OutputArguments,311,Variable -SetAddressMethodFFHSEType,312,Method -SetAddressMethodFFHSEType_InputArguments,313,Variable -SetAddressMethodFFHSEType_OutputArguments,314,Variable -SetAddressMethodPROFIBUSType,315,Method -SetAddressMethodPROFIBUSType_InputArguments,316,Variable -SetAddressMethodPROFIBUSType_OutputArguments,317,Variable -SetAddressMethodPROFINETType,318,Method -SetAddressMethodPROFINETType_InputArguments,319,Variable -SetAddressMethodPROFINETType_OutputArguments,320,Variable -SetAddressMethodHARTType,321,Method -SetAddressMethodHARTType_InputArguments,322,Variable -SetAddressMethodHARTType_OutputArguments,323,Variable -ServerCommunicationFFH1DeviceType,324,ObjectType -ServerCommunicationFFH1DeviceType_ParameterSet,325,Object -ServerCommunicationFFH1DeviceType_ParameterSet_ParameterIdentifier,326,Variable -ServerCommunicationFFH1DeviceType_MethodSet,327,Object -ServerCommunicationFFH1DeviceType_MethodSet_MethodIdentifier,328,Method -ServerCommunicationFFH1DeviceType_GroupIdentifier,329,Object -ServerCommunicationFFH1DeviceType_GroupIdentifier_UIElement,330,Variable -ServerCommunicationFFH1DeviceType_Identification,331,Object -ServerCommunicationFFH1DeviceType_Identification_UIElement,332,Variable -ServerCommunicationFFH1DeviceType_Lock,333,Object -ServerCommunicationFFH1DeviceType_Lock_Locked,334,Variable -ServerCommunicationFFH1DeviceType_Lock_LockingClient,335,Variable -ServerCommunicationFFH1DeviceType_Lock_LockingUser,336,Variable -ServerCommunicationFFH1DeviceType_Lock_RemainingLockTime,337,Variable -ServerCommunicationFFH1DeviceType_Lock_InitLock,338,Method -ServerCommunicationFFH1DeviceType_Lock_InitLock_InputArguments,339,Variable -ServerCommunicationFFH1DeviceType_Lock_InitLock_OutputArguments,340,Variable -ServerCommunicationFFH1DeviceType_Lock_RenewLock,341,Method -ServerCommunicationFFH1DeviceType_Lock_RenewLock_OutputArguments,342,Variable -ServerCommunicationFFH1DeviceType_Lock_ExitLock,343,Method -ServerCommunicationFFH1DeviceType_Lock_ExitLock_OutputArguments,344,Variable -ServerCommunicationFFH1DeviceType_Lock_BreakLock,345,Method -ServerCommunicationFFH1DeviceType_Lock_BreakLock_OutputArguments,346,Variable -ServerCommunicationFFH1DeviceType_SerialNumber,347,Variable -ServerCommunicationFFH1DeviceType_RevisionCounter,348,Variable -ServerCommunicationFFH1DeviceType_Manufacturer,349,Variable -ServerCommunicationFFH1DeviceType_Model,350,Variable -ServerCommunicationFFH1DeviceType_DeviceManual,351,Variable -ServerCommunicationFFH1DeviceType_DeviceRevision,352,Variable -ServerCommunicationFFH1DeviceType_SoftwareRevision,353,Variable -ServerCommunicationFFH1DeviceType_HardwareRevision,354,Variable -ServerCommunicationFFH1DeviceType_DeviceClass,355,Variable -ServerCommunicationFFH1DeviceType_DeviceHealth,356,Variable -ServerCommunicationFFH1DeviceType_DeviceTypeImage,357,Object -ServerCommunicationFFH1DeviceType_DeviceTypeImage_ImageIdentifier,358,Variable -ServerCommunicationFFH1DeviceType_Documentation,359,Object -ServerCommunicationFFH1DeviceType_Documentation_DocumentIdentifier,360,Variable -ServerCommunicationFFH1DeviceType_ProtocolSupport,361,Object -ServerCommunicationFFH1DeviceType_ProtocolSupport_ProtocolSupportIdentifier,362,Variable -ServerCommunicationFFH1DeviceType_ImageSet,363,Object -ServerCommunicationFFH1DeviceType_ImageSet_ImageIdentifier,364,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier,365,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_ParameterSet,366,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,367,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_MethodSet,368,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_MethodSet_MethodIdentifier,369,Method -ServerCommunicationFFH1DeviceType_CPIdentifier_Identification,370,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_Identification_UIElement,371,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock,372,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_Locked,373,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_LockingClient,374,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_LockingUser,375,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_RemainingLockTime,376,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_InitLock,377,Method -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_InitLock_InputArguments,378,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_InitLock_OutputArguments,379,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_RenewLock,380,Method -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,381,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_ExitLock,382,Method -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,383,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_BreakLock,384,Method -ServerCommunicationFFH1DeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,385,Variable -ServerCommunicationFFH1DeviceType_CPIdentifier_NetworkAddress,386,Object -ServerCommunicationFFH1DeviceType_CPIdentifier_NetworkAddress_UIElement,387,Variable -ServerCommunicationFFH1DeviceType_MethodSet_Scan,388,Method -ServerCommunicationFFH1DeviceType_MethodSet_Scan_OutputArguments,389,Variable -ServerCommunicationFFH1DeviceType_MethodSet_ResetScan,390,Method -ServerCommunicationFFH1DeviceType_MethodSet_ResetScan_OutputArguments,391,Variable -ServerCommunicationFFH1DeviceType_MethodSet_AddComponent,392,Method -ServerCommunicationFFH1DeviceType_MethodSet_AddComponent_InputArguments,393,Variable -ServerCommunicationFFH1DeviceType_MethodSet_AddComponent_OutputArguments,394,Variable -ServerCommunicationFFH1DeviceType_MethodSet_RemoveComponent,395,Method -ServerCommunicationFFH1DeviceType_MethodSet_RemoveComponent_InputArguments,396,Variable -ServerCommunicationFFH1DeviceType_MethodSet_RemoveComponent_OutputArguments,397,Variable -ServerCommunicationFFH1DeviceType_MethodSet_SetAddress,398,Method -ServerCommunicationFFH1DeviceType_MethodSet_SetAddress_InputArguments,399,Variable -ServerCommunicationFFH1DeviceType_MethodSet_SetAddress_OutputArguments,400,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider,401,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_ParameterSet,402,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,403,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet,404,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_MethodIdentifier,405,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_Identification,406,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_Identification_UIElement,407,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock,408,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_Locked,409,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_LockingClient,410,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_LockingUser,411,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_RemainingLockTime,412,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_InitLock,413,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_InitLock_InputArguments,414,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_InitLock_OutputArguments,415,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_RenewLock,416,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,417,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_ExitLock,418,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,419,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_BreakLock,420,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,421,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_SerialNumber,422,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_RevisionCounter,423,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Manufacturer,424,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Model,425,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceManual,426,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceRevision,427,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_SoftwareRevision,428,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_HardwareRevision,429,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceClass,430,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceHealth,431,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceTypeImage,432,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,433,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_Documentation,434,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_Documentation_DocumentIdentifier,435,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_ProtocolSupport,436,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,437,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_ImageSet,438,Object -ServerCommunicationFFH1DeviceType_ServiceProvider_ImageSet_ImageIdentifier,439,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Disconnect,440,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,441,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,442,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Connect,443,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Connect_InputArguments,444,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,445,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Transfer,446,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,447,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,448,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_GetPublishedData,449,Method -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_GetPublishedData_InputArguments,450,Variable -ServerCommunicationFFH1DeviceType_ServiceProvider_MethodSet_GetPublishedData_OutputArguments,451,Variable -ServerCommunicationFFHSEDeviceType,452,ObjectType -ServerCommunicationFFHSEDeviceType_ParameterSet,453,Object -ServerCommunicationFFHSEDeviceType_ParameterSet_ParameterIdentifier,454,Variable -ServerCommunicationFFHSEDeviceType_MethodSet,455,Object -ServerCommunicationFFHSEDeviceType_MethodSet_MethodIdentifier,456,Method -ServerCommunicationFFHSEDeviceType_GroupIdentifier,457,Object -ServerCommunicationFFHSEDeviceType_GroupIdentifier_UIElement,458,Variable -ServerCommunicationFFHSEDeviceType_Identification,459,Object -ServerCommunicationFFHSEDeviceType_Identification_UIElement,460,Variable -ServerCommunicationFFHSEDeviceType_Lock,461,Object -ServerCommunicationFFHSEDeviceType_Lock_Locked,462,Variable -ServerCommunicationFFHSEDeviceType_Lock_LockingClient,463,Variable -ServerCommunicationFFHSEDeviceType_Lock_LockingUser,464,Variable -ServerCommunicationFFHSEDeviceType_Lock_RemainingLockTime,465,Variable -ServerCommunicationFFHSEDeviceType_Lock_InitLock,466,Method -ServerCommunicationFFHSEDeviceType_Lock_InitLock_InputArguments,467,Variable -ServerCommunicationFFHSEDeviceType_Lock_InitLock_OutputArguments,468,Variable -ServerCommunicationFFHSEDeviceType_Lock_RenewLock,469,Method -ServerCommunicationFFHSEDeviceType_Lock_RenewLock_OutputArguments,470,Variable -ServerCommunicationFFHSEDeviceType_Lock_ExitLock,471,Method -ServerCommunicationFFHSEDeviceType_Lock_ExitLock_OutputArguments,472,Variable -ServerCommunicationFFHSEDeviceType_Lock_BreakLock,473,Method -ServerCommunicationFFHSEDeviceType_Lock_BreakLock_OutputArguments,474,Variable -ServerCommunicationFFHSEDeviceType_SerialNumber,475,Variable -ServerCommunicationFFHSEDeviceType_RevisionCounter,476,Variable -ServerCommunicationFFHSEDeviceType_Manufacturer,477,Variable -ServerCommunicationFFHSEDeviceType_Model,478,Variable -ServerCommunicationFFHSEDeviceType_DeviceManual,479,Variable -ServerCommunicationFFHSEDeviceType_DeviceRevision,480,Variable -ServerCommunicationFFHSEDeviceType_SoftwareRevision,481,Variable -ServerCommunicationFFHSEDeviceType_HardwareRevision,482,Variable -ServerCommunicationFFHSEDeviceType_DeviceClass,483,Variable -ServerCommunicationFFHSEDeviceType_DeviceHealth,484,Variable -ServerCommunicationFFHSEDeviceType_DeviceTypeImage,485,Object -ServerCommunicationFFHSEDeviceType_DeviceTypeImage_ImageIdentifier,486,Variable -ServerCommunicationFFHSEDeviceType_Documentation,487,Object -ServerCommunicationFFHSEDeviceType_Documentation_DocumentIdentifier,488,Variable -ServerCommunicationFFHSEDeviceType_ProtocolSupport,489,Object -ServerCommunicationFFHSEDeviceType_ProtocolSupport_ProtocolSupportIdentifier,490,Variable -ServerCommunicationFFHSEDeviceType_ImageSet,491,Object -ServerCommunicationFFHSEDeviceType_ImageSet_ImageIdentifier,492,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier,493,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_ParameterSet,494,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,495,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_MethodSet,496,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_MethodSet_MethodIdentifier,497,Method -ServerCommunicationFFHSEDeviceType_CPIdentifier_Identification,498,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_Identification_UIElement,499,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock,500,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_Locked,501,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_LockingClient,502,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_LockingUser,503,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_RemainingLockTime,504,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_InitLock,505,Method -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_InitLock_InputArguments,506,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,507,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_RenewLock,508,Method -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,509,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_ExitLock,510,Method -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,511,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_BreakLock,512,Method -ServerCommunicationFFHSEDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,513,Variable -ServerCommunicationFFHSEDeviceType_CPIdentifier_NetworkAddress,514,Object -ServerCommunicationFFHSEDeviceType_CPIdentifier_NetworkAddress_UIElement,515,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_Scan,516,Method -ServerCommunicationFFHSEDeviceType_MethodSet_Scan_OutputArguments,517,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_ResetScan,518,Method -ServerCommunicationFFHSEDeviceType_MethodSet_ResetScan_OutputArguments,519,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_AddComponent,520,Method -ServerCommunicationFFHSEDeviceType_MethodSet_AddComponent_InputArguments,521,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_AddComponent_OutputArguments,522,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_RemoveComponent,523,Method -ServerCommunicationFFHSEDeviceType_MethodSet_RemoveComponent_InputArguments,524,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_RemoveComponent_OutputArguments,525,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_SetAddress,526,Method -ServerCommunicationFFHSEDeviceType_MethodSet_SetAddress_InputArguments,527,Variable -ServerCommunicationFFHSEDeviceType_MethodSet_SetAddress_OutputArguments,528,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider,529,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_ParameterSet,530,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,531,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet,532,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_MethodIdentifier,533,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_Identification,534,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_Identification_UIElement,535,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock,536,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_Locked,537,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_LockingClient,538,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_LockingUser,539,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_RemainingLockTime,540,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_InitLock,541,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_InitLock_InputArguments,542,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_InitLock_OutputArguments,543,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_RenewLock,544,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,545,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_ExitLock,546,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,547,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_BreakLock,548,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,549,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_SerialNumber,550,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_RevisionCounter,551,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Manufacturer,552,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Model,553,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceManual,554,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceRevision,555,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_SoftwareRevision,556,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_HardwareRevision,557,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceClass,558,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceHealth,559,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceTypeImage,560,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,561,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_Documentation,562,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_Documentation_DocumentIdentifier,563,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_ProtocolSupport,564,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,565,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_ImageSet,566,Object -ServerCommunicationFFHSEDeviceType_ServiceProvider_ImageSet_ImageIdentifier,567,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Disconnect,568,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,569,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,570,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Connect,571,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Connect_InputArguments,572,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,573,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Transfer,574,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,575,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,576,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_GetPublishedData,577,Method -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_GetPublishedData_InputArguments,578,Variable -ServerCommunicationFFHSEDeviceType_ServiceProvider_MethodSet_GetPublishedData_OutputArguments,579,Variable -ServerCommunicationPROFIBUSDeviceType,580,ObjectType -ServerCommunicationPROFIBUSDeviceType_ParameterSet,581,Object -ServerCommunicationPROFIBUSDeviceType_ParameterSet_ParameterIdentifier,582,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet,583,Object -ServerCommunicationPROFIBUSDeviceType_MethodSet_MethodIdentifier,584,Method -ServerCommunicationPROFIBUSDeviceType_GroupIdentifier,585,Object -ServerCommunicationPROFIBUSDeviceType_GroupIdentifier_UIElement,586,Variable -ServerCommunicationPROFIBUSDeviceType_Identification,587,Object -ServerCommunicationPROFIBUSDeviceType_Identification_UIElement,588,Variable -ServerCommunicationPROFIBUSDeviceType_Lock,589,Object -ServerCommunicationPROFIBUSDeviceType_Lock_Locked,590,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_LockingClient,591,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_LockingUser,592,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_RemainingLockTime,593,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_InitLock,594,Method -ServerCommunicationPROFIBUSDeviceType_Lock_InitLock_InputArguments,595,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_InitLock_OutputArguments,596,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_RenewLock,597,Method -ServerCommunicationPROFIBUSDeviceType_Lock_RenewLock_OutputArguments,598,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_ExitLock,599,Method -ServerCommunicationPROFIBUSDeviceType_Lock_ExitLock_OutputArguments,600,Variable -ServerCommunicationPROFIBUSDeviceType_Lock_BreakLock,601,Method -ServerCommunicationPROFIBUSDeviceType_Lock_BreakLock_OutputArguments,602,Variable -ServerCommunicationPROFIBUSDeviceType_SerialNumber,603,Variable -ServerCommunicationPROFIBUSDeviceType_RevisionCounter,604,Variable -ServerCommunicationPROFIBUSDeviceType_Manufacturer,605,Variable -ServerCommunicationPROFIBUSDeviceType_Model,606,Variable -ServerCommunicationPROFIBUSDeviceType_DeviceManual,607,Variable -ServerCommunicationPROFIBUSDeviceType_DeviceRevision,608,Variable -ServerCommunicationPROFIBUSDeviceType_SoftwareRevision,609,Variable -ServerCommunicationPROFIBUSDeviceType_HardwareRevision,610,Variable -ServerCommunicationPROFIBUSDeviceType_DeviceClass,611,Variable -ServerCommunicationPROFIBUSDeviceType_DeviceHealth,612,Variable -ServerCommunicationPROFIBUSDeviceType_DeviceTypeImage,613,Object -ServerCommunicationPROFIBUSDeviceType_DeviceTypeImage_ImageIdentifier,614,Variable -ServerCommunicationPROFIBUSDeviceType_Documentation,615,Object -ServerCommunicationPROFIBUSDeviceType_Documentation_DocumentIdentifier,616,Variable -ServerCommunicationPROFIBUSDeviceType_ProtocolSupport,617,Object -ServerCommunicationPROFIBUSDeviceType_ProtocolSupport_ProtocolSupportIdentifier,618,Variable -ServerCommunicationPROFIBUSDeviceType_ImageSet,619,Object -ServerCommunicationPROFIBUSDeviceType_ImageSet_ImageIdentifier,620,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier,621,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_ParameterSet,622,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,623,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_MethodSet,624,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_MethodSet_MethodIdentifier,625,Method -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Identification,626,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Identification_UIElement,627,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock,628,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_Locked,629,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_LockingClient,630,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_LockingUser,631,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_RemainingLockTime,632,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_InitLock,633,Method -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_InitLock_InputArguments,634,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,635,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_RenewLock,636,Method -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,637,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_ExitLock,638,Method -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,639,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_BreakLock,640,Method -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,641,Variable -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_NetworkAddress,642,Object -ServerCommunicationPROFIBUSDeviceType_CPIdentifier_NetworkAddress_UIElement,643,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_Scan,644,Method -ServerCommunicationPROFIBUSDeviceType_MethodSet_Scan_OutputArguments,645,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_ResetScan,646,Method -ServerCommunicationPROFIBUSDeviceType_MethodSet_ResetScan_OutputArguments,647,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_AddComponent,648,Method -ServerCommunicationPROFIBUSDeviceType_MethodSet_AddComponent_InputArguments,649,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_AddComponent_OutputArguments,650,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_RemoveComponent,651,Method -ServerCommunicationPROFIBUSDeviceType_MethodSet_RemoveComponent_InputArguments,652,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_RemoveComponent_OutputArguments,653,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_SetAddress,654,Method -ServerCommunicationPROFIBUSDeviceType_MethodSet_SetAddress_InputArguments,655,Variable -ServerCommunicationPROFIBUSDeviceType_MethodSet_SetAddress_OutputArguments,656,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider,657,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ParameterSet,658,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,659,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet,660,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_MethodIdentifier,661,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Identification,662,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Identification_UIElement,663,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock,664,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_Locked,665,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_LockingClient,666,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_LockingUser,667,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_RemainingLockTime,668,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_InitLock,669,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_InitLock_InputArguments,670,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_InitLock_OutputArguments,671,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_RenewLock,672,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,673,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_ExitLock,674,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,675,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_BreakLock,676,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,677,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_SerialNumber,678,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_RevisionCounter,679,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Manufacturer,680,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Model,681,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceManual,682,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceRevision,683,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_SoftwareRevision,684,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_HardwareRevision,685,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceClass,686,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceHealth,687,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceTypeImage,688,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,689,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Documentation,690,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_Documentation_DocumentIdentifier,691,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ProtocolSupport,692,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,693,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ImageSet,694,Object -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_ImageSet_ImageIdentifier,695,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Disconnect,696,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,697,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,698,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Connect,699,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Connect_InputArguments,700,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,701,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Transfer,702,Method -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,703,Variable -ServerCommunicationPROFIBUSDeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,704,Variable -ServerCommunicationPROFINETDeviceType,705,ObjectType -ServerCommunicationPROFINETDeviceType_ParameterSet,706,Object -ServerCommunicationPROFINETDeviceType_ParameterSet_ParameterIdentifier,707,Variable -ServerCommunicationPROFINETDeviceType_MethodSet,708,Object -ServerCommunicationPROFINETDeviceType_MethodSet_MethodIdentifier,709,Method -ServerCommunicationPROFINETDeviceType_GroupIdentifier,710,Object -ServerCommunicationPROFINETDeviceType_GroupIdentifier_UIElement,711,Variable -ServerCommunicationPROFINETDeviceType_Identification,712,Object -ServerCommunicationPROFINETDeviceType_Identification_UIElement,713,Variable -ServerCommunicationPROFINETDeviceType_Lock,714,Object -ServerCommunicationPROFINETDeviceType_Lock_Locked,715,Variable -ServerCommunicationPROFINETDeviceType_Lock_LockingClient,716,Variable -ServerCommunicationPROFINETDeviceType_Lock_LockingUser,717,Variable -ServerCommunicationPROFINETDeviceType_Lock_RemainingLockTime,718,Variable -ServerCommunicationPROFINETDeviceType_Lock_InitLock,719,Method -ServerCommunicationPROFINETDeviceType_Lock_InitLock_InputArguments,720,Variable -ServerCommunicationPROFINETDeviceType_Lock_InitLock_OutputArguments,721,Variable -ServerCommunicationPROFINETDeviceType_Lock_RenewLock,722,Method -ServerCommunicationPROFINETDeviceType_Lock_RenewLock_OutputArguments,723,Variable -ServerCommunicationPROFINETDeviceType_Lock_ExitLock,724,Method -ServerCommunicationPROFINETDeviceType_Lock_ExitLock_OutputArguments,725,Variable -ServerCommunicationPROFINETDeviceType_Lock_BreakLock,726,Method -ServerCommunicationPROFINETDeviceType_Lock_BreakLock_OutputArguments,727,Variable -ServerCommunicationPROFINETDeviceType_SerialNumber,728,Variable -ServerCommunicationPROFINETDeviceType_RevisionCounter,729,Variable -ServerCommunicationPROFINETDeviceType_Manufacturer,730,Variable -ServerCommunicationPROFINETDeviceType_Model,731,Variable -ServerCommunicationPROFINETDeviceType_DeviceManual,732,Variable -ServerCommunicationPROFINETDeviceType_DeviceRevision,733,Variable -ServerCommunicationPROFINETDeviceType_SoftwareRevision,734,Variable -ServerCommunicationPROFINETDeviceType_HardwareRevision,735,Variable -ServerCommunicationPROFINETDeviceType_DeviceClass,736,Variable -ServerCommunicationPROFINETDeviceType_DeviceHealth,737,Variable -ServerCommunicationPROFINETDeviceType_DeviceTypeImage,738,Object -ServerCommunicationPROFINETDeviceType_DeviceTypeImage_ImageIdentifier,739,Variable -ServerCommunicationPROFINETDeviceType_Documentation,740,Object -ServerCommunicationPROFINETDeviceType_Documentation_DocumentIdentifier,741,Variable -ServerCommunicationPROFINETDeviceType_ProtocolSupport,742,Object -ServerCommunicationPROFINETDeviceType_ProtocolSupport_ProtocolSupportIdentifier,743,Variable -ServerCommunicationPROFINETDeviceType_ImageSet,744,Object -ServerCommunicationPROFINETDeviceType_ImageSet_ImageIdentifier,745,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier,746,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_ParameterSet,747,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,748,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_MethodSet,749,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_MethodSet_MethodIdentifier,750,Method -ServerCommunicationPROFINETDeviceType_CPIdentifier_Identification,751,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_Identification_UIElement,752,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock,753,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_Locked,754,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_LockingClient,755,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_LockingUser,756,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_RemainingLockTime,757,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_InitLock,758,Method -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_InitLock_InputArguments,759,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,760,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_RenewLock,761,Method -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,762,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_ExitLock,763,Method -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,764,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_BreakLock,765,Method -ServerCommunicationPROFINETDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,766,Variable -ServerCommunicationPROFINETDeviceType_CPIdentifier_NetworkAddress,767,Object -ServerCommunicationPROFINETDeviceType_CPIdentifier_NetworkAddress_UIElement,768,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_Scan,769,Method -ServerCommunicationPROFINETDeviceType_MethodSet_Scan_OutputArguments,770,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_ResetScan,771,Method -ServerCommunicationPROFINETDeviceType_MethodSet_ResetScan_OutputArguments,772,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_AddComponent,773,Method -ServerCommunicationPROFINETDeviceType_MethodSet_AddComponent_InputArguments,774,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_AddComponent_OutputArguments,775,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_RemoveComponent,776,Method -ServerCommunicationPROFINETDeviceType_MethodSet_RemoveComponent_InputArguments,777,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_RemoveComponent_OutputArguments,778,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_SetAddress,779,Method -ServerCommunicationPROFINETDeviceType_MethodSet_SetAddress_InputArguments,780,Variable -ServerCommunicationPROFINETDeviceType_MethodSet_SetAddress_OutputArguments,781,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider,782,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_ParameterSet,783,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,784,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet,785,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_MethodIdentifier,786,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_Identification,787,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_Identification_UIElement,788,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock,789,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_Locked,790,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_LockingClient,791,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_LockingUser,792,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_RemainingLockTime,793,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_InitLock,794,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_InitLock_InputArguments,795,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_InitLock_OutputArguments,796,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_RenewLock,797,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,798,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_ExitLock,799,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,800,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_BreakLock,801,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,802,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_SerialNumber,803,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_RevisionCounter,804,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Manufacturer,805,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Model,806,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceManual,807,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceRevision,808,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_SoftwareRevision,809,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_HardwareRevision,810,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceClass,811,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceHealth,812,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceTypeImage,813,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,814,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_Documentation,815,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_Documentation_DocumentIdentifier,816,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_ProtocolSupport,817,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,818,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_ImageSet,819,Object -ServerCommunicationPROFINETDeviceType_ServiceProvider_ImageSet_ImageIdentifier,820,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Disconnect,821,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,822,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,823,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Connect,824,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Connect_InputArguments,825,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,826,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Transfer,827,Method -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,828,Variable -ServerCommunicationPROFINETDeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,829,Variable -ServerCommunicationHARType,830,ObjectType -ServerCommunicationHARType_ParameterSet,831,Object -ServerCommunicationHARType_ParameterSet_ParameterIdentifier,832,Variable -ServerCommunicationHARType_MethodSet,833,Object -ServerCommunicationHARType_MethodSet_MethodIdentifier,834,Method -ServerCommunicationHARType_GroupIdentifier,835,Object -ServerCommunicationHARType_GroupIdentifier_UIElement,836,Variable -ServerCommunicationHARType_Identification,837,Object -ServerCommunicationHARType_Identification_UIElement,838,Variable -ServerCommunicationHARType_Lock,839,Object -ServerCommunicationHARType_Lock_Locked,840,Variable -ServerCommunicationHARType_Lock_LockingClient,841,Variable -ServerCommunicationHARType_Lock_LockingUser,842,Variable -ServerCommunicationHARType_Lock_RemainingLockTime,843,Variable -ServerCommunicationHARType_Lock_InitLock,844,Method -ServerCommunicationHARType_Lock_InitLock_InputArguments,845,Variable -ServerCommunicationHARType_Lock_InitLock_OutputArguments,846,Variable -ServerCommunicationHARType_Lock_RenewLock,847,Method -ServerCommunicationHARType_Lock_RenewLock_OutputArguments,848,Variable -ServerCommunicationHARType_Lock_ExitLock,849,Method -ServerCommunicationHARType_Lock_ExitLock_OutputArguments,850,Variable -ServerCommunicationHARType_Lock_BreakLock,851,Method -ServerCommunicationHARType_Lock_BreakLock_OutputArguments,852,Variable -ServerCommunicationHARType_SerialNumber,853,Variable -ServerCommunicationHARType_RevisionCounter,854,Variable -ServerCommunicationHARType_Manufacturer,855,Variable -ServerCommunicationHARType_Model,856,Variable -ServerCommunicationHARType_DeviceManual,857,Variable -ServerCommunicationHARType_DeviceRevision,858,Variable -ServerCommunicationHARType_SoftwareRevision,859,Variable -ServerCommunicationHARType_HardwareRevision,860,Variable -ServerCommunicationHARType_DeviceClass,861,Variable -ServerCommunicationHARType_DeviceHealth,862,Variable -ServerCommunicationHARType_DeviceTypeImage,863,Object -ServerCommunicationHARType_DeviceTypeImage_ImageIdentifier,864,Variable -ServerCommunicationHARType_Documentation,865,Object -ServerCommunicationHARType_Documentation_DocumentIdentifier,866,Variable -ServerCommunicationHARType_ProtocolSupport,867,Object -ServerCommunicationHARType_ProtocolSupport_ProtocolSupportIdentifier,868,Variable -ServerCommunicationHARType_ImageSet,869,Object -ServerCommunicationHARType_ImageSet_ImageIdentifier,870,Variable -ServerCommunicationHARType_CPIdentifier,871,Object -ServerCommunicationHARType_CPIdentifier_ParameterSet,872,Object -ServerCommunicationHARType_CPIdentifier_ParameterSet_ParameterIdentifier,873,Variable -ServerCommunicationHARType_CPIdentifier_MethodSet,874,Object -ServerCommunicationHARType_CPIdentifier_MethodSet_MethodIdentifier,875,Method -ServerCommunicationHARType_CPIdentifier_Identification,876,Object -ServerCommunicationHARType_CPIdentifier_Identification_UIElement,877,Variable -ServerCommunicationHARType_CPIdentifier_Lock,878,Object -ServerCommunicationHARType_CPIdentifier_Lock_Locked,879,Variable -ServerCommunicationHARType_CPIdentifier_Lock_LockingClient,880,Variable -ServerCommunicationHARType_CPIdentifier_Lock_LockingUser,881,Variable -ServerCommunicationHARType_CPIdentifier_Lock_RemainingLockTime,882,Variable -ServerCommunicationHARType_CPIdentifier_Lock_InitLock,883,Method -ServerCommunicationHARType_CPIdentifier_Lock_InitLock_InputArguments,884,Variable -ServerCommunicationHARType_CPIdentifier_Lock_InitLock_OutputArguments,885,Variable -ServerCommunicationHARType_CPIdentifier_Lock_RenewLock,886,Method -ServerCommunicationHARType_CPIdentifier_Lock_RenewLock_OutputArguments,887,Variable -ServerCommunicationHARType_CPIdentifier_Lock_ExitLock,888,Method -ServerCommunicationHARType_CPIdentifier_Lock_ExitLock_OutputArguments,889,Variable -ServerCommunicationHARType_CPIdentifier_Lock_BreakLock,890,Method -ServerCommunicationHARType_CPIdentifier_Lock_BreakLock_OutputArguments,891,Variable -ServerCommunicationHARType_CPIdentifier_NetworkAddress,892,Object -ServerCommunicationHARType_CPIdentifier_NetworkAddress_UIElement,893,Variable -ServerCommunicationHARType_MethodSet_Scan,894,Method -ServerCommunicationHARType_MethodSet_Scan_OutputArguments,895,Variable -ServerCommunicationHARType_MethodSet_ResetScan,896,Method -ServerCommunicationHARType_MethodSet_ResetScan_OutputArguments,897,Variable -ServerCommunicationHARType_MethodSet_AddComponent,898,Method -ServerCommunicationHARType_MethodSet_AddComponent_InputArguments,899,Variable -ServerCommunicationHARType_MethodSet_AddComponent_OutputArguments,900,Variable -ServerCommunicationHARType_MethodSet_RemoveComponent,901,Method -ServerCommunicationHARType_MethodSet_RemoveComponent_InputArguments,902,Variable -ServerCommunicationHARType_MethodSet_RemoveComponent_OutputArguments,903,Variable -ServerCommunicationHARType_MethodSet_SetAddress,904,Method -ServerCommunicationHARType_MethodSet_SetAddress_InputArguments,905,Variable -ServerCommunicationHARType_MethodSet_SetAddress_OutputArguments,906,Variable -ServerCommunicationHARType_ServiceProvider,907,Object -ServerCommunicationHARType_ServiceProvider_ParameterSet,908,Object -ServerCommunicationHARType_ServiceProvider_ParameterSet_ParameterIdentifier,909,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet,910,Object -ServerCommunicationHARType_ServiceProvider_MethodSet_MethodIdentifier,911,Method -ServerCommunicationHARType_ServiceProvider_Identification,912,Object -ServerCommunicationHARType_ServiceProvider_Identification_UIElement,913,Variable -ServerCommunicationHARType_ServiceProvider_Lock,914,Object -ServerCommunicationHARType_ServiceProvider_Lock_Locked,915,Variable -ServerCommunicationHARType_ServiceProvider_Lock_LockingClient,916,Variable -ServerCommunicationHARType_ServiceProvider_Lock_LockingUser,917,Variable -ServerCommunicationHARType_ServiceProvider_Lock_RemainingLockTime,918,Variable -ServerCommunicationHARType_ServiceProvider_Lock_InitLock,919,Method -ServerCommunicationHARType_ServiceProvider_Lock_InitLock_InputArguments,920,Variable -ServerCommunicationHARType_ServiceProvider_Lock_InitLock_OutputArguments,921,Variable -ServerCommunicationHARType_ServiceProvider_Lock_RenewLock,922,Method -ServerCommunicationHARType_ServiceProvider_Lock_RenewLock_OutputArguments,923,Variable -ServerCommunicationHARType_ServiceProvider_Lock_ExitLock,924,Method -ServerCommunicationHARType_ServiceProvider_Lock_ExitLock_OutputArguments,925,Variable -ServerCommunicationHARType_ServiceProvider_Lock_BreakLock,926,Method -ServerCommunicationHARType_ServiceProvider_Lock_BreakLock_OutputArguments,927,Variable -ServerCommunicationHARType_ServiceProvider_SerialNumber,928,Variable -ServerCommunicationHARType_ServiceProvider_RevisionCounter,929,Variable -ServerCommunicationHARType_ServiceProvider_Manufacturer,930,Variable -ServerCommunicationHARType_ServiceProvider_Model,931,Variable -ServerCommunicationHARType_ServiceProvider_DeviceManual,932,Variable -ServerCommunicationHARType_ServiceProvider_DeviceRevision,933,Variable -ServerCommunicationHARType_ServiceProvider_SoftwareRevision,934,Variable -ServerCommunicationHARType_ServiceProvider_HardwareRevision,935,Variable -ServerCommunicationHARType_ServiceProvider_DeviceClass,936,Variable -ServerCommunicationHARType_ServiceProvider_DeviceHealth,937,Variable -ServerCommunicationHARType_ServiceProvider_DeviceTypeImage,938,Object -ServerCommunicationHARType_ServiceProvider_DeviceTypeImage_ImageIdentifier,939,Variable -ServerCommunicationHARType_ServiceProvider_Documentation,940,Object -ServerCommunicationHARType_ServiceProvider_Documentation_DocumentIdentifier,941,Variable -ServerCommunicationHARType_ServiceProvider_ProtocolSupport,942,Object -ServerCommunicationHARType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,943,Variable -ServerCommunicationHARType_ServiceProvider_ImageSet,944,Object -ServerCommunicationHARType_ServiceProvider_ImageSet_ImageIdentifier,945,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Disconnect,946,Method -ServerCommunicationHARType_ServiceProvider_MethodSet_Disconnect_InputArguments,947,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Disconnect_OutputArguments,948,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Connect,949,Method -ServerCommunicationHARType_ServiceProvider_MethodSet_Connect_InputArguments,950,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Connect_OutputArguments,951,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Transfer,952,Method -ServerCommunicationHARType_ServiceProvider_MethodSet_Transfer_InputArguments,953,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_Transfer_OutputArguments,954,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_GetPublishedData,955,Method -ServerCommunicationHARType_ServiceProvider_MethodSet_GetPublishedData_InputArguments,956,Variable -ServerCommunicationHARType_ServiceProvider_MethodSet_GetPublishedData_OutputArguments,957,Variable -ConnectMethodFFH1Type,958,Method -ConnectMethodFFH1Type_InputArguments,959,Variable -ConnectMethodFFH1Type_OutputArguments,960,Variable -ConnectMethodFFHSEType,961,Method -ConnectMethodFFHSEType_InputArguments,962,Variable -ConnectMethodFFHSEType_OutputArguments,963,Variable -ConnectMethodPROFIBUSType,964,Method -ConnectMethodPROFIBUSType_InputArguments,965,Variable -ConnectMethodPROFIBUSType_OutputArguments,966,Variable -ConnectMethodPROFINETType,967,Method -ConnectMethodPROFINETType_InputArguments,968,Variable -ConnectMethodPROFINETType_OutputArguments,969,Variable -ConnectMethodHARTType,970,Method -ConnectMethodHARTType_InputArguments,971,Variable -ConnectMethodHARTType_OutputArguments,972,Variable -TransferMethodFFH1Type,973,Method -TransferMethodFFH1Type_InputArguments,974,Variable -TransferMethodFFH1Type_OutputArguments,975,Variable -TransferMethodFFHSEType,976,Method -TransferMethodFFHSEType_InputArguments,977,Variable -TransferMethodFFHSEType_OutputArguments,978,Variable -TransferMethodPROFIBUSType,979,Method -TransferMethodPROFIBUSType_InputArguments,980,Variable -TransferMethodPROFIBUSType_OutputArguments,981,Variable -TransferMethodPROFINETType,982,Method -TransferMethodPROFINETType_InputArguments,983,Variable -TransferMethodPROFINETType_OutputArguments,984,Variable -TransferMethodHARTType,985,Method -TransferMethodHARTType_InputArguments,986,Variable -TransferMethodHARTType_OutputArguments,987,Variable -GetPublishedDataMethodFFH1Type,988,Method -GetPublishedDataMethodFFH1Type_InputArguments,989,Variable -GetPublishedDataMethodFFH1Type_OutputArguments,990,Variable -GetPublishedDataMethodFFHSEType,991,Method -GetPublishedDataMethodFFHSEType_InputArguments,992,Variable -GetPublishedDataMethodFFHSEType_OutputArguments,993,Variable -GetPublishedDataMethodHARTType,994,Method -GetPublishedDataMethodHARTType_InputArguments,995,Variable -GetPublishedDataMethodHARTType_OutputArguments,996,Variable -ServerCommunicationFFH1ServiceType,997,ObjectType -ServerCommunicationFFH1ServiceType_ParameterSet,998,Object -ServerCommunicationFFH1ServiceType_ParameterSet_ParameterIdentifier,999,Variable -ServerCommunicationFFH1ServiceType_MethodSet,1000,Object -ServerCommunicationFFH1ServiceType_MethodSet_MethodIdentifier,1001,Method -ServerCommunicationFFH1ServiceType_GroupIdentifier,1002,Object -ServerCommunicationFFH1ServiceType_GroupIdentifier_UIElement,1003,Variable -ServerCommunicationFFH1ServiceType_Identification,1004,Object -ServerCommunicationFFH1ServiceType_Identification_UIElement,1005,Variable -ServerCommunicationFFH1ServiceType_Lock,1006,Object -ServerCommunicationFFH1ServiceType_Lock_Locked,1007,Variable -ServerCommunicationFFH1ServiceType_Lock_LockingClient,1008,Variable -ServerCommunicationFFH1ServiceType_Lock_LockingUser,1009,Variable -ServerCommunicationFFH1ServiceType_Lock_RemainingLockTime,1010,Variable -ServerCommunicationFFH1ServiceType_Lock_InitLock,1011,Method -ServerCommunicationFFH1ServiceType_Lock_InitLock_InputArguments,1012,Variable -ServerCommunicationFFH1ServiceType_Lock_InitLock_OutputArguments,1013,Variable -ServerCommunicationFFH1ServiceType_Lock_RenewLock,1014,Method -ServerCommunicationFFH1ServiceType_Lock_RenewLock_OutputArguments,1015,Variable -ServerCommunicationFFH1ServiceType_Lock_ExitLock,1016,Method -ServerCommunicationFFH1ServiceType_Lock_ExitLock_OutputArguments,1017,Variable -ServerCommunicationFFH1ServiceType_Lock_BreakLock,1018,Method -ServerCommunicationFFH1ServiceType_Lock_BreakLock_OutputArguments,1019,Variable -ServerCommunicationFFH1ServiceType_SerialNumber,1020,Variable -ServerCommunicationFFH1ServiceType_RevisionCounter,1021,Variable -ServerCommunicationFFH1ServiceType_Manufacturer,1022,Variable -ServerCommunicationFFH1ServiceType_Model,1023,Variable -ServerCommunicationFFH1ServiceType_DeviceManual,1024,Variable -ServerCommunicationFFH1ServiceType_DeviceRevision,1025,Variable -ServerCommunicationFFH1ServiceType_SoftwareRevision,1026,Variable -ServerCommunicationFFH1ServiceType_HardwareRevision,1027,Variable -ServerCommunicationFFH1ServiceType_DeviceClass,1028,Variable -ServerCommunicationFFH1ServiceType_DeviceHealth,1029,Variable -ServerCommunicationFFH1ServiceType_DeviceTypeImage,1030,Object -ServerCommunicationFFH1ServiceType_DeviceTypeImage_ImageIdentifier,1031,Variable -ServerCommunicationFFH1ServiceType_Documentation,1032,Object -ServerCommunicationFFH1ServiceType_Documentation_DocumentIdentifier,1033,Variable -ServerCommunicationFFH1ServiceType_ProtocolSupport,1034,Object -ServerCommunicationFFH1ServiceType_ProtocolSupport_ProtocolSupportIdentifier,1035,Variable -ServerCommunicationFFH1ServiceType_ImageSet,1036,Object -ServerCommunicationFFH1ServiceType_ImageSet_ImageIdentifier,1037,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier,1038,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_ParameterSet,1039,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,1040,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_MethodSet,1041,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_MethodSet_MethodIdentifier,1042,Method -ServerCommunicationFFH1ServiceType_CPIdentifier_Identification,1043,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_Identification_UIElement,1044,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock,1045,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_Locked,1046,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_LockingClient,1047,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_LockingUser,1048,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_RemainingLockTime,1049,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_InitLock,1050,Method -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_InitLock_InputArguments,1051,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_InitLock_OutputArguments,1052,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_RenewLock,1053,Method -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,1054,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_ExitLock,1055,Method -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,1056,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_BreakLock,1057,Method -ServerCommunicationFFH1ServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,1058,Variable -ServerCommunicationFFH1ServiceType_CPIdentifier_NetworkAddress,1059,Object -ServerCommunicationFFH1ServiceType_CPIdentifier_NetworkAddress_UIElement,1060,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Disconnect,1061,Method -ServerCommunicationFFH1ServiceType_MethodSet_Disconnect_InputArguments,1062,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Disconnect_OutputArguments,1063,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Connect,1064,Method -ServerCommunicationFFH1ServiceType_MethodSet_Connect_InputArguments,1065,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Connect_OutputArguments,1066,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Transfer,1067,Method -ServerCommunicationFFH1ServiceType_MethodSet_Transfer_InputArguments,1068,Variable -ServerCommunicationFFH1ServiceType_MethodSet_Transfer_OutputArguments,1069,Variable -ServerCommunicationFFH1ServiceType_MethodSet_GetPublishedData,1070,Method -ServerCommunicationFFH1ServiceType_MethodSet_GetPublishedData_InputArguments,1071,Variable -ServerCommunicationFFH1ServiceType_MethodSet_GetPublishedData_OutputArguments,1072,Variable -ServerCommunicationFFHSEServiceType,1073,ObjectType -ServerCommunicationFFHSEServiceType_ParameterSet,1074,Object -ServerCommunicationFFHSEServiceType_ParameterSet_ParameterIdentifier,1075,Variable -ServerCommunicationFFHSEServiceType_MethodSet,1076,Object -ServerCommunicationFFHSEServiceType_MethodSet_MethodIdentifier,1077,Method -ServerCommunicationFFHSEServiceType_GroupIdentifier,1078,Object -ServerCommunicationFFHSEServiceType_GroupIdentifier_UIElement,1079,Variable -ServerCommunicationFFHSEServiceType_Identification,1080,Object -ServerCommunicationFFHSEServiceType_Identification_UIElement,1081,Variable -ServerCommunicationFFHSEServiceType_Lock,1082,Object -ServerCommunicationFFHSEServiceType_Lock_Locked,1083,Variable -ServerCommunicationFFHSEServiceType_Lock_LockingClient,1084,Variable -ServerCommunicationFFHSEServiceType_Lock_LockingUser,1085,Variable -ServerCommunicationFFHSEServiceType_Lock_RemainingLockTime,1086,Variable -ServerCommunicationFFHSEServiceType_Lock_InitLock,1087,Method -ServerCommunicationFFHSEServiceType_Lock_InitLock_InputArguments,1088,Variable -ServerCommunicationFFHSEServiceType_Lock_InitLock_OutputArguments,1089,Variable -ServerCommunicationFFHSEServiceType_Lock_RenewLock,1090,Method -ServerCommunicationFFHSEServiceType_Lock_RenewLock_OutputArguments,1091,Variable -ServerCommunicationFFHSEServiceType_Lock_ExitLock,1092,Method -ServerCommunicationFFHSEServiceType_Lock_ExitLock_OutputArguments,1093,Variable -ServerCommunicationFFHSEServiceType_Lock_BreakLock,1094,Method -ServerCommunicationFFHSEServiceType_Lock_BreakLock_OutputArguments,1095,Variable -ServerCommunicationFFHSEServiceType_SerialNumber,1096,Variable -ServerCommunicationFFHSEServiceType_RevisionCounter,1097,Variable -ServerCommunicationFFHSEServiceType_Manufacturer,1098,Variable -ServerCommunicationFFHSEServiceType_Model,1099,Variable -ServerCommunicationFFHSEServiceType_DeviceManual,1100,Variable -ServerCommunicationFFHSEServiceType_DeviceRevision,1101,Variable -ServerCommunicationFFHSEServiceType_SoftwareRevision,1102,Variable -ServerCommunicationFFHSEServiceType_HardwareRevision,1103,Variable -ServerCommunicationFFHSEServiceType_DeviceClass,1104,Variable -ServerCommunicationFFHSEServiceType_DeviceHealth,1105,Variable -ServerCommunicationFFHSEServiceType_DeviceTypeImage,1106,Object -ServerCommunicationFFHSEServiceType_DeviceTypeImage_ImageIdentifier,1107,Variable -ServerCommunicationFFHSEServiceType_Documentation,1108,Object -ServerCommunicationFFHSEServiceType_Documentation_DocumentIdentifier,1109,Variable -ServerCommunicationFFHSEServiceType_ProtocolSupport,1110,Object -ServerCommunicationFFHSEServiceType_ProtocolSupport_ProtocolSupportIdentifier,1111,Variable -ServerCommunicationFFHSEServiceType_ImageSet,1112,Object -ServerCommunicationFFHSEServiceType_ImageSet_ImageIdentifier,1113,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier,1114,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_ParameterSet,1115,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,1116,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_MethodSet,1117,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_MethodSet_MethodIdentifier,1118,Method -ServerCommunicationFFHSEServiceType_CPIdentifier_Identification,1119,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_Identification_UIElement,1120,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock,1121,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_Locked,1122,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_LockingClient,1123,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_LockingUser,1124,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_RemainingLockTime,1125,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_InitLock,1126,Method -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_InitLock_InputArguments,1127,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_InitLock_OutputArguments,1128,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_RenewLock,1129,Method -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,1130,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_ExitLock,1131,Method -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,1132,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_BreakLock,1133,Method -ServerCommunicationFFHSEServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,1134,Variable -ServerCommunicationFFHSEServiceType_CPIdentifier_NetworkAddress,1135,Object -ServerCommunicationFFHSEServiceType_CPIdentifier_NetworkAddress_UIElement,1136,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Disconnect,1137,Method -ServerCommunicationFFHSEServiceType_MethodSet_Disconnect_InputArguments,1138,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Disconnect_OutputArguments,1139,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Connect,1140,Method -ServerCommunicationFFHSEServiceType_MethodSet_Connect_InputArguments,1141,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Connect_OutputArguments,1142,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Transfer,1143,Method -ServerCommunicationFFHSEServiceType_MethodSet_Transfer_InputArguments,1144,Variable -ServerCommunicationFFHSEServiceType_MethodSet_Transfer_OutputArguments,1145,Variable -ServerCommunicationFFHSEServiceType_MethodSet_GetPublishedData,1146,Method -ServerCommunicationFFHSEServiceType_MethodSet_GetPublishedData_InputArguments,1147,Variable -ServerCommunicationFFHSEServiceType_MethodSet_GetPublishedData_OutputArguments,1148,Variable -ServerCommunicationPROFIBUSServiceType,1149,ObjectType -ServerCommunicationPROFIBUSServiceType_ParameterSet,1150,Object -ServerCommunicationPROFIBUSServiceType_ParameterSet_ParameterIdentifier,1151,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet,1152,Object -ServerCommunicationPROFIBUSServiceType_MethodSet_MethodIdentifier,1153,Method -ServerCommunicationPROFIBUSServiceType_GroupIdentifier,1154,Object -ServerCommunicationPROFIBUSServiceType_GroupIdentifier_UIElement,1155,Variable -ServerCommunicationPROFIBUSServiceType_Identification,1156,Object -ServerCommunicationPROFIBUSServiceType_Identification_UIElement,1157,Variable -ServerCommunicationPROFIBUSServiceType_Lock,1158,Object -ServerCommunicationPROFIBUSServiceType_Lock_Locked,1159,Variable -ServerCommunicationPROFIBUSServiceType_Lock_LockingClient,1160,Variable -ServerCommunicationPROFIBUSServiceType_Lock_LockingUser,1161,Variable -ServerCommunicationPROFIBUSServiceType_Lock_RemainingLockTime,1162,Variable -ServerCommunicationPROFIBUSServiceType_Lock_InitLock,1163,Method -ServerCommunicationPROFIBUSServiceType_Lock_InitLock_InputArguments,1164,Variable -ServerCommunicationPROFIBUSServiceType_Lock_InitLock_OutputArguments,1165,Variable -ServerCommunicationPROFIBUSServiceType_Lock_RenewLock,1166,Method -ServerCommunicationPROFIBUSServiceType_Lock_RenewLock_OutputArguments,1167,Variable -ServerCommunicationPROFIBUSServiceType_Lock_ExitLock,1168,Method -ServerCommunicationPROFIBUSServiceType_Lock_ExitLock_OutputArguments,1169,Variable -ServerCommunicationPROFIBUSServiceType_Lock_BreakLock,1170,Method -ServerCommunicationPROFIBUSServiceType_Lock_BreakLock_OutputArguments,1171,Variable -ServerCommunicationPROFIBUSServiceType_SerialNumber,1172,Variable -ServerCommunicationPROFIBUSServiceType_RevisionCounter,1173,Variable -ServerCommunicationPROFIBUSServiceType_Manufacturer,1174,Variable -ServerCommunicationPROFIBUSServiceType_Model,1175,Variable -ServerCommunicationPROFIBUSServiceType_DeviceManual,1176,Variable -ServerCommunicationPROFIBUSServiceType_DeviceRevision,1177,Variable -ServerCommunicationPROFIBUSServiceType_SoftwareRevision,1178,Variable -ServerCommunicationPROFIBUSServiceType_HardwareRevision,1179,Variable -ServerCommunicationPROFIBUSServiceType_DeviceClass,1180,Variable -ServerCommunicationPROFIBUSServiceType_DeviceHealth,1181,Variable -ServerCommunicationPROFIBUSServiceType_DeviceTypeImage,1182,Object -ServerCommunicationPROFIBUSServiceType_DeviceTypeImage_ImageIdentifier,1183,Variable -ServerCommunicationPROFIBUSServiceType_Documentation,1184,Object -ServerCommunicationPROFIBUSServiceType_Documentation_DocumentIdentifier,1185,Variable -ServerCommunicationPROFIBUSServiceType_ProtocolSupport,1186,Object -ServerCommunicationPROFIBUSServiceType_ProtocolSupport_ProtocolSupportIdentifier,1187,Variable -ServerCommunicationPROFIBUSServiceType_ImageSet,1188,Object -ServerCommunicationPROFIBUSServiceType_ImageSet_ImageIdentifier,1189,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier,1190,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_ParameterSet,1191,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,1192,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_MethodSet,1193,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_MethodSet_MethodIdentifier,1194,Method -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Identification,1195,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Identification_UIElement,1196,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock,1197,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_Locked,1198,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_LockingClient,1199,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_LockingUser,1200,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_RemainingLockTime,1201,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_InitLock,1202,Method -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_InitLock_InputArguments,1203,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_InitLock_OutputArguments,1204,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_RenewLock,1205,Method -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,1206,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_ExitLock,1207,Method -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,1208,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_BreakLock,1209,Method -ServerCommunicationPROFIBUSServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,1210,Variable -ServerCommunicationPROFIBUSServiceType_CPIdentifier_NetworkAddress,1211,Object -ServerCommunicationPROFIBUSServiceType_CPIdentifier_NetworkAddress_UIElement,1212,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Disconnect,1213,Method -ServerCommunicationPROFIBUSServiceType_MethodSet_Disconnect_InputArguments,1214,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Disconnect_OutputArguments,1215,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Connect,1216,Method -ServerCommunicationPROFIBUSServiceType_MethodSet_Connect_InputArguments,1217,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Connect_OutputArguments,1218,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Transfer,1219,Method -ServerCommunicationPROFIBUSServiceType_MethodSet_Transfer_InputArguments,1220,Variable -ServerCommunicationPROFIBUSServiceType_MethodSet_Transfer_OutputArguments,1221,Variable -ServerCommunicationPROFINETServiceType,1222,ObjectType -ServerCommunicationPROFINETServiceType_ParameterSet,1223,Object -ServerCommunicationPROFINETServiceType_ParameterSet_ParameterIdentifier,1224,Variable -ServerCommunicationPROFINETServiceType_MethodSet,1225,Object -ServerCommunicationPROFINETServiceType_MethodSet_MethodIdentifier,1226,Method -ServerCommunicationPROFINETServiceType_GroupIdentifier,1227,Object -ServerCommunicationPROFINETServiceType_GroupIdentifier_UIElement,1228,Variable -ServerCommunicationPROFINETServiceType_Identification,1229,Object -ServerCommunicationPROFINETServiceType_Identification_UIElement,1230,Variable -ServerCommunicationPROFINETServiceType_Lock,1231,Object -ServerCommunicationPROFINETServiceType_Lock_Locked,1232,Variable -ServerCommunicationPROFINETServiceType_Lock_LockingClient,1233,Variable -ServerCommunicationPROFINETServiceType_Lock_LockingUser,1234,Variable -ServerCommunicationPROFINETServiceType_Lock_RemainingLockTime,1235,Variable -ServerCommunicationPROFINETServiceType_Lock_InitLock,1236,Method -ServerCommunicationPROFINETServiceType_Lock_InitLock_InputArguments,1237,Variable -ServerCommunicationPROFINETServiceType_Lock_InitLock_OutputArguments,1238,Variable -ServerCommunicationPROFINETServiceType_Lock_RenewLock,1239,Method -ServerCommunicationPROFINETServiceType_Lock_RenewLock_OutputArguments,1240,Variable -ServerCommunicationPROFINETServiceType_Lock_ExitLock,1241,Method -ServerCommunicationPROFINETServiceType_Lock_ExitLock_OutputArguments,1242,Variable -ServerCommunicationPROFINETServiceType_Lock_BreakLock,1243,Method -ServerCommunicationPROFINETServiceType_Lock_BreakLock_OutputArguments,1244,Variable -ServerCommunicationPROFINETServiceType_SerialNumber,1245,Variable -ServerCommunicationPROFINETServiceType_RevisionCounter,1246,Variable -ServerCommunicationPROFINETServiceType_Manufacturer,1247,Variable -ServerCommunicationPROFINETServiceType_Model,1248,Variable -ServerCommunicationPROFINETServiceType_DeviceManual,1249,Variable -ServerCommunicationPROFINETServiceType_DeviceRevision,1250,Variable -ServerCommunicationPROFINETServiceType_SoftwareRevision,1251,Variable -ServerCommunicationPROFINETServiceType_HardwareRevision,1252,Variable -ServerCommunicationPROFINETServiceType_DeviceClass,1253,Variable -ServerCommunicationPROFINETServiceType_DeviceHealth,1254,Variable -ServerCommunicationPROFINETServiceType_DeviceTypeImage,1255,Object -ServerCommunicationPROFINETServiceType_DeviceTypeImage_ImageIdentifier,1256,Variable -ServerCommunicationPROFINETServiceType_Documentation,1257,Object -ServerCommunicationPROFINETServiceType_Documentation_DocumentIdentifier,1258,Variable -ServerCommunicationPROFINETServiceType_ProtocolSupport,1259,Object -ServerCommunicationPROFINETServiceType_ProtocolSupport_ProtocolSupportIdentifier,1260,Variable -ServerCommunicationPROFINETServiceType_ImageSet,1261,Object -ServerCommunicationPROFINETServiceType_ImageSet_ImageIdentifier,1262,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier,1263,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_ParameterSet,1264,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,1265,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_MethodSet,1266,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_MethodSet_MethodIdentifier,1267,Method -ServerCommunicationPROFINETServiceType_CPIdentifier_Identification,1268,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_Identification_UIElement,1269,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock,1270,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_Locked,1271,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_LockingClient,1272,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_LockingUser,1273,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_RemainingLockTime,1274,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_InitLock,1275,Method -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_InitLock_InputArguments,1276,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_InitLock_OutputArguments,1277,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_RenewLock,1278,Method -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,1279,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_ExitLock,1280,Method -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,1281,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_BreakLock,1282,Method -ServerCommunicationPROFINETServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,1283,Variable -ServerCommunicationPROFINETServiceType_CPIdentifier_NetworkAddress,1284,Object -ServerCommunicationPROFINETServiceType_CPIdentifier_NetworkAddress_UIElement,1285,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Disconnect,1286,Method -ServerCommunicationPROFINETServiceType_MethodSet_Disconnect_InputArguments,1287,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Disconnect_OutputArguments,1288,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Connect,1289,Method -ServerCommunicationPROFINETServiceType_MethodSet_Connect_InputArguments,1290,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Connect_OutputArguments,1291,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Transfer,1292,Method -ServerCommunicationPROFINETServiceType_MethodSet_Transfer_InputArguments,1293,Variable -ServerCommunicationPROFINETServiceType_MethodSet_Transfer_OutputArguments,1294,Variable -ServerCommunicationHARTServiceType,1295,ObjectType -ServerCommunicationHARTServiceType_ParameterSet,1296,Object -ServerCommunicationHARTServiceType_ParameterSet_ParameterIdentifier,1297,Variable -ServerCommunicationHARTServiceType_MethodSet,1298,Object -ServerCommunicationHARTServiceType_MethodSet_MethodIdentifier,1299,Method -ServerCommunicationHARTServiceType_GroupIdentifier,1300,Object -ServerCommunicationHARTServiceType_GroupIdentifier_UIElement,1301,Variable -ServerCommunicationHARTServiceType_Identification,1302,Object -ServerCommunicationHARTServiceType_Identification_UIElement,1303,Variable -ServerCommunicationHARTServiceType_Lock,1304,Object -ServerCommunicationHARTServiceType_Lock_Locked,1305,Variable -ServerCommunicationHARTServiceType_Lock_LockingClient,1306,Variable -ServerCommunicationHARTServiceType_Lock_LockingUser,1307,Variable -ServerCommunicationHARTServiceType_Lock_RemainingLockTime,1308,Variable -ServerCommunicationHARTServiceType_Lock_InitLock,1309,Method -ServerCommunicationHARTServiceType_Lock_InitLock_InputArguments,1310,Variable -ServerCommunicationHARTServiceType_Lock_InitLock_OutputArguments,1311,Variable -ServerCommunicationHARTServiceType_Lock_RenewLock,1312,Method -ServerCommunicationHARTServiceType_Lock_RenewLock_OutputArguments,1313,Variable -ServerCommunicationHARTServiceType_Lock_ExitLock,1314,Method -ServerCommunicationHARTServiceType_Lock_ExitLock_OutputArguments,1315,Variable -ServerCommunicationHARTServiceType_Lock_BreakLock,1316,Method -ServerCommunicationHARTServiceType_Lock_BreakLock_OutputArguments,1317,Variable -ServerCommunicationHARTServiceType_SerialNumber,1318,Variable -ServerCommunicationHARTServiceType_RevisionCounter,1319,Variable -ServerCommunicationHARTServiceType_Manufacturer,1320,Variable -ServerCommunicationHARTServiceType_Model,1321,Variable -ServerCommunicationHARTServiceType_DeviceManual,1322,Variable -ServerCommunicationHARTServiceType_DeviceRevision,1323,Variable -ServerCommunicationHARTServiceType_SoftwareRevision,1324,Variable -ServerCommunicationHARTServiceType_HardwareRevision,1325,Variable -ServerCommunicationHARTServiceType_DeviceClass,1326,Variable -ServerCommunicationHARTServiceType_DeviceHealth,1327,Variable -ServerCommunicationHARTServiceType_DeviceTypeImage,1328,Object -ServerCommunicationHARTServiceType_DeviceTypeImage_ImageIdentifier,1329,Variable -ServerCommunicationHARTServiceType_Documentation,1330,Object -ServerCommunicationHARTServiceType_Documentation_DocumentIdentifier,1331,Variable -ServerCommunicationHARTServiceType_ProtocolSupport,1332,Object -ServerCommunicationHARTServiceType_ProtocolSupport_ProtocolSupportIdentifier,1333,Variable -ServerCommunicationHARTServiceType_ImageSet,1334,Object -ServerCommunicationHARTServiceType_ImageSet_ImageIdentifier,1335,Variable -ServerCommunicationHARTServiceType_CPIdentifier,1336,Object -ServerCommunicationHARTServiceType_CPIdentifier_ParameterSet,1337,Object -ServerCommunicationHARTServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,1338,Variable -ServerCommunicationHARTServiceType_CPIdentifier_MethodSet,1339,Object -ServerCommunicationHARTServiceType_CPIdentifier_MethodSet_MethodIdentifier,1340,Method -ServerCommunicationHARTServiceType_CPIdentifier_Identification,1341,Object -ServerCommunicationHARTServiceType_CPIdentifier_Identification_UIElement,1342,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock,1343,Object -ServerCommunicationHARTServiceType_CPIdentifier_Lock_Locked,1344,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_LockingClient,1345,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_LockingUser,1346,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_RemainingLockTime,1347,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_InitLock,1348,Method -ServerCommunicationHARTServiceType_CPIdentifier_Lock_InitLock_InputArguments,1349,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_InitLock_OutputArguments,1350,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_RenewLock,1351,Method -ServerCommunicationHARTServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,1352,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_ExitLock,1353,Method -ServerCommunicationHARTServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,1354,Variable -ServerCommunicationHARTServiceType_CPIdentifier_Lock_BreakLock,1355,Method -ServerCommunicationHARTServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,1356,Variable -ServerCommunicationHARTServiceType_CPIdentifier_NetworkAddress,1357,Object -ServerCommunicationHARTServiceType_CPIdentifier_NetworkAddress_UIElement,1358,Variable -ServerCommunicationHARTServiceType_MethodSet_Disconnect,1359,Method -ServerCommunicationHARTServiceType_MethodSet_Disconnect_InputArguments,1360,Variable -ServerCommunicationHARTServiceType_MethodSet_Disconnect_OutputArguments,1361,Variable -ServerCommunicationHARTServiceType_MethodSet_Connect,1362,Method -ServerCommunicationHARTServiceType_MethodSet_Connect_InputArguments,1363,Variable -ServerCommunicationHARTServiceType_MethodSet_Connect_OutputArguments,1364,Variable -ServerCommunicationHARTServiceType_MethodSet_Transfer,1365,Method -ServerCommunicationHARTServiceType_MethodSet_Transfer_InputArguments,1366,Variable -ServerCommunicationHARTServiceType_MethodSet_Transfer_OutputArguments,1367,Variable -ServerCommunicationHARTServiceType_MethodSet_GetPublishedData,1368,Method -ServerCommunicationHARTServiceType_MethodSet_GetPublishedData_InputArguments,1369,Variable -ServerCommunicationHARTServiceType_MethodSet_GetPublishedData_OutputArguments,1370,Variable -Foundation_H1,1371,ObjectType -Foundation_HSE,1372,ObjectType -Profibus_DP,1373,ObjectType -Profibus_PA,1374,ObjectType -Profinet_IO,1375,ObjectType -HART,1376,ObjectType -ISA100_Wireless,1377,ObjectType -GenericProtocol,1378,ObjectType -GenericProtocol_ProtocolIdentifier,1379,Variable -ConnectionPoint_Foundation_H1,1380,ObjectType -ConnectionPoint_Foundation_H1_ParameterSet,1381,Object -ConnectionPoint_Foundation_H1_ParameterSet_ParameterIdentifier,1382,Variable -ConnectionPoint_Foundation_H1_MethodSet,1383,Object -ConnectionPoint_Foundation_H1_MethodSet_MethodIdentifier,1384,Method -ConnectionPoint_Foundation_H1_GroupIdentifier,1385,Object -ConnectionPoint_Foundation_H1_GroupIdentifier_UIElement,1386,Variable -ConnectionPoint_Foundation_H1_Identification,1387,Object -ConnectionPoint_Foundation_H1_Identification_UIElement,1388,Variable -ConnectionPoint_Foundation_H1_Lock,1389,Object -ConnectionPoint_Foundation_H1_Lock_Locked,1390,Variable -ConnectionPoint_Foundation_H1_Lock_LockingClient,1391,Variable -ConnectionPoint_Foundation_H1_Lock_LockingUser,1392,Variable -ConnectionPoint_Foundation_H1_Lock_RemainingLockTime,1393,Variable -ConnectionPoint_Foundation_H1_Lock_InitLock,1394,Method -ConnectionPoint_Foundation_H1_Lock_InitLock_InputArguments,1395,Variable -ConnectionPoint_Foundation_H1_Lock_InitLock_OutputArguments,1396,Variable -ConnectionPoint_Foundation_H1_Lock_RenewLock,1397,Method -ConnectionPoint_Foundation_H1_Lock_RenewLock_OutputArguments,1398,Variable -ConnectionPoint_Foundation_H1_Lock_ExitLock,1399,Method -ConnectionPoint_Foundation_H1_Lock_ExitLock_OutputArguments,1400,Variable -ConnectionPoint_Foundation_H1_Lock_BreakLock,1401,Method -ConnectionPoint_Foundation_H1_Lock_BreakLock_OutputArguments,1402,Variable -ConnectionPoint_Foundation_H1_NetworkAddress,1403,Object -ConnectionPoint_Foundation_H1_NetworkAddress_UIElement,1404,Variable -ConnectionPoint_Foundation_H1_ProfileId,1405,Object -ConnectionPoint_Foundation_H1_NetworkIdentifier,1406,Object -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock,1407,Object -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_Locked,1408,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_LockingClient,1409,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_LockingUser,1410,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_RemainingLockTime,1411,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_InitLock,1412,Method -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_InitLock_InputArguments,1413,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_InitLock_OutputArguments,1414,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_RenewLock,1415,Method -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_RenewLock_OutputArguments,1416,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_ExitLock,1417,Method -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_ExitLock_OutputArguments,1418,Variable -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_BreakLock,1419,Method -ConnectionPoint_Foundation_H1_NetworkIdentifier_Lock_BreakLock_OutputArguments,1420,Variable -ConnectionPoint_Foundation_H1_Address,1421,Variable -ConnectionPoint_Foundation_H1_OrdinalNumber,1422,Variable -ConnectionPoint_Foundation_H1_SIFConnection,1423,Variable -ConnectionPoint_Foundation_HSE,1424,ObjectType -ConnectionPoint_Foundation_HSE_ParameterSet,1425,Object -ConnectionPoint_Foundation_HSE_ParameterSet_ParameterIdentifier,1426,Variable -ConnectionPoint_Foundation_HSE_MethodSet,1427,Object -ConnectionPoint_Foundation_HSE_MethodSet_MethodIdentifier,1428,Method -ConnectionPoint_Foundation_HSE_GroupIdentifier,1429,Object -ConnectionPoint_Foundation_HSE_GroupIdentifier_UIElement,1430,Variable -ConnectionPoint_Foundation_HSE_Identification,1431,Object -ConnectionPoint_Foundation_HSE_Identification_UIElement,1432,Variable -ConnectionPoint_Foundation_HSE_Lock,1433,Object -ConnectionPoint_Foundation_HSE_Lock_Locked,1434,Variable -ConnectionPoint_Foundation_HSE_Lock_LockingClient,1435,Variable -ConnectionPoint_Foundation_HSE_Lock_LockingUser,1436,Variable -ConnectionPoint_Foundation_HSE_Lock_RemainingLockTime,1437,Variable -ConnectionPoint_Foundation_HSE_Lock_InitLock,1438,Method -ConnectionPoint_Foundation_HSE_Lock_InitLock_InputArguments,1439,Variable -ConnectionPoint_Foundation_HSE_Lock_InitLock_OutputArguments,1440,Variable -ConnectionPoint_Foundation_HSE_Lock_RenewLock,1441,Method -ConnectionPoint_Foundation_HSE_Lock_RenewLock_OutputArguments,1442,Variable -ConnectionPoint_Foundation_HSE_Lock_ExitLock,1443,Method -ConnectionPoint_Foundation_HSE_Lock_ExitLock_OutputArguments,1444,Variable -ConnectionPoint_Foundation_HSE_Lock_BreakLock,1445,Method -ConnectionPoint_Foundation_HSE_Lock_BreakLock_OutputArguments,1446,Variable -ConnectionPoint_Foundation_HSE_NetworkAddress,1447,Object -ConnectionPoint_Foundation_HSE_NetworkAddress_UIElement,1448,Variable -ConnectionPoint_Foundation_HSE_ProfileId,1449,Object -ConnectionPoint_Foundation_HSE_NetworkIdentifier,1450,Object -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock,1451,Object -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_Locked,1452,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_LockingClient,1453,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_LockingUser,1454,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_RemainingLockTime,1455,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_InitLock,1456,Method -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_InitLock_InputArguments,1457,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_InitLock_OutputArguments,1458,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_RenewLock,1459,Method -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_RenewLock_OutputArguments,1460,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_ExitLock,1461,Method -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_ExitLock_OutputArguments,1462,Variable -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_BreakLock,1463,Method -ConnectionPoint_Foundation_HSE_NetworkIdentifier_Lock_BreakLock_OutputArguments,1464,Variable -ConnectionPoint_Foundation_HSE_Address,1465,Variable -ConnectionPoint_Foundation_HSE_OrdinalNumber,1466,Variable -ConnectionPoint_Profibus_DP,1467,ObjectType -ConnectionPoint_Profibus_DP_ParameterSet,1468,Object -ConnectionPoint_Profibus_DP_ParameterSet_ParameterIdentifier,1469,Variable -ConnectionPoint_Profibus_DP_MethodSet,1470,Object -ConnectionPoint_Profibus_DP_MethodSet_MethodIdentifier,1471,Method -ConnectionPoint_Profibus_DP_GroupIdentifier,1472,Object -ConnectionPoint_Profibus_DP_GroupIdentifier_UIElement,1473,Variable -ConnectionPoint_Profibus_DP_Identification,1474,Object -ConnectionPoint_Profibus_DP_Identification_UIElement,1475,Variable -ConnectionPoint_Profibus_DP_Lock,1476,Object -ConnectionPoint_Profibus_DP_Lock_Locked,1477,Variable -ConnectionPoint_Profibus_DP_Lock_LockingClient,1478,Variable -ConnectionPoint_Profibus_DP_Lock_LockingUser,1479,Variable -ConnectionPoint_Profibus_DP_Lock_RemainingLockTime,1480,Variable -ConnectionPoint_Profibus_DP_Lock_InitLock,1481,Method -ConnectionPoint_Profibus_DP_Lock_InitLock_InputArguments,1482,Variable -ConnectionPoint_Profibus_DP_Lock_InitLock_OutputArguments,1483,Variable -ConnectionPoint_Profibus_DP_Lock_RenewLock,1484,Method -ConnectionPoint_Profibus_DP_Lock_RenewLock_OutputArguments,1485,Variable -ConnectionPoint_Profibus_DP_Lock_ExitLock,1486,Method -ConnectionPoint_Profibus_DP_Lock_ExitLock_OutputArguments,1487,Variable -ConnectionPoint_Profibus_DP_Lock_BreakLock,1488,Method -ConnectionPoint_Profibus_DP_Lock_BreakLock_OutputArguments,1489,Variable -ConnectionPoint_Profibus_DP_NetworkAddress,1490,Object -ConnectionPoint_Profibus_DP_NetworkAddress_UIElement,1491,Variable -ConnectionPoint_Profibus_DP_ProfileId,1492,Object -ConnectionPoint_Profibus_DP_NetworkIdentifier,1493,Object -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock,1494,Object -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_Locked,1495,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_LockingClient,1496,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_LockingUser,1497,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_RemainingLockTime,1498,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_InitLock,1499,Method -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_InitLock_InputArguments,1500,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_InitLock_OutputArguments,1501,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_RenewLock,1502,Method -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_RenewLock_OutputArguments,1503,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_ExitLock,1504,Method -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_ExitLock_OutputArguments,1505,Variable -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_BreakLock,1506,Method -ConnectionPoint_Profibus_DP_NetworkIdentifier_Lock_BreakLock_OutputArguments,1507,Variable -ConnectionPoint_Profibus_DP_Address,1508,Variable -ConnectionPoint_Profinet_IO,1509,ObjectType -ConnectionPoint_Profinet_IO_ParameterSet,1510,Object -ConnectionPoint_Profinet_IO_ParameterSet_ParameterIdentifier,1511,Variable -ConnectionPoint_Profinet_IO_MethodSet,1512,Object -ConnectionPoint_Profinet_IO_MethodSet_MethodIdentifier,1513,Method -ConnectionPoint_Profinet_IO_GroupIdentifier,1514,Object -ConnectionPoint_Profinet_IO_GroupIdentifier_UIElement,1515,Variable -ConnectionPoint_Profinet_IO_Identification,1516,Object -ConnectionPoint_Profinet_IO_Identification_UIElement,1517,Variable -ConnectionPoint_Profinet_IO_Lock,1518,Object -ConnectionPoint_Profinet_IO_Lock_Locked,1519,Variable -ConnectionPoint_Profinet_IO_Lock_LockingClient,1520,Variable -ConnectionPoint_Profinet_IO_Lock_LockingUser,1521,Variable -ConnectionPoint_Profinet_IO_Lock_RemainingLockTime,1522,Variable -ConnectionPoint_Profinet_IO_Lock_InitLock,1523,Method -ConnectionPoint_Profinet_IO_Lock_InitLock_InputArguments,1524,Variable -ConnectionPoint_Profinet_IO_Lock_InitLock_OutputArguments,1525,Variable -ConnectionPoint_Profinet_IO_Lock_RenewLock,1526,Method -ConnectionPoint_Profinet_IO_Lock_RenewLock_OutputArguments,1527,Variable -ConnectionPoint_Profinet_IO_Lock_ExitLock,1528,Method -ConnectionPoint_Profinet_IO_Lock_ExitLock_OutputArguments,1529,Variable -ConnectionPoint_Profinet_IO_Lock_BreakLock,1530,Method -ConnectionPoint_Profinet_IO_Lock_BreakLock_OutputArguments,1531,Variable -ConnectionPoint_Profinet_IO_NetworkAddress,1532,Object -ConnectionPoint_Profinet_IO_NetworkAddress_UIElement,1533,Variable -ConnectionPoint_Profinet_IO_ProfileId,1534,Object -ConnectionPoint_Profinet_IO_NetworkIdentifier,1535,Object -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock,1536,Object -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_Locked,1537,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_LockingClient,1538,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_LockingUser,1539,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_RemainingLockTime,1540,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_InitLock,1541,Method -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_InitLock_InputArguments,1542,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_InitLock_OutputArguments,1543,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_RenewLock,1544,Method -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_RenewLock_OutputArguments,1545,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_ExitLock,1546,Method -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_ExitLock_OutputArguments,1547,Variable -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_BreakLock,1548,Method -ConnectionPoint_Profinet_IO_NetworkIdentifier_Lock_BreakLock_OutputArguments,1549,Variable -ConnectionPoint_Profinet_IO_MAC,1550,Variable -ConnectionPoint_Profinet_IO_IPv4,1551,Variable -ConnectionPoint_Profinet_IO_DNSNAME,1552,Variable -ConnectionPoint_Profinet_IO_VALID,1553,Variable -ConnectionPoint_HART_TP5,1554,ObjectType -ConnectionPoint_HART_TP5_ParameterSet,1555,Object -ConnectionPoint_HART_TP5_ParameterSet_ParameterIdentifier,1556,Variable -ConnectionPoint_HART_TP5_MethodSet,1557,Object -ConnectionPoint_HART_TP5_MethodSet_MethodIdentifier,1558,Method -ConnectionPoint_HART_TP5_GroupIdentifier,1559,Object -ConnectionPoint_HART_TP5_GroupIdentifier_UIElement,1560,Variable -ConnectionPoint_HART_TP5_Identification,1561,Object -ConnectionPoint_HART_TP5_Identification_UIElement,1562,Variable -ConnectionPoint_HART_TP5_Lock,1563,Object -ConnectionPoint_HART_TP5_Lock_Locked,1564,Variable -ConnectionPoint_HART_TP5_Lock_LockingClient,1565,Variable -ConnectionPoint_HART_TP5_Lock_LockingUser,1566,Variable -ConnectionPoint_HART_TP5_Lock_RemainingLockTime,1567,Variable -ConnectionPoint_HART_TP5_Lock_InitLock,1568,Method -ConnectionPoint_HART_TP5_Lock_InitLock_InputArguments,1569,Variable -ConnectionPoint_HART_TP5_Lock_InitLock_OutputArguments,1570,Variable -ConnectionPoint_HART_TP5_Lock_RenewLock,1571,Method -ConnectionPoint_HART_TP5_Lock_RenewLock_OutputArguments,1572,Variable -ConnectionPoint_HART_TP5_Lock_ExitLock,1573,Method -ConnectionPoint_HART_TP5_Lock_ExitLock_OutputArguments,1574,Variable -ConnectionPoint_HART_TP5_Lock_BreakLock,1575,Method -ConnectionPoint_HART_TP5_Lock_BreakLock_OutputArguments,1576,Variable -ConnectionPoint_HART_TP5_NetworkAddress,1577,Object -ConnectionPoint_HART_TP5_NetworkAddress_UIElement,1578,Variable -ConnectionPoint_HART_TP5_ProfileId,1579,Object -ConnectionPoint_HART_TP5_NetworkIdentifier,1580,Object -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock,1581,Object -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_Locked,1582,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_LockingClient,1583,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_LockingUser,1584,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_RemainingLockTime,1585,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_InitLock,1586,Method -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_InitLock_InputArguments,1587,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_InitLock_OutputArguments,1588,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_RenewLock,1589,Method -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_RenewLock_OutputArguments,1590,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_ExitLock,1591,Method -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_ExitLock_OutputArguments,1592,Variable -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_BreakLock,1593,Method -ConnectionPoint_HART_TP5_NetworkIdentifier_Lock_BreakLock_OutputArguments,1594,Variable -ConnectionPoint_HART_TP5_DevAddr,1595,Variable -ConnectionPoint_HART_TP5_DevMfg,1596,Variable -ConnectionPoint_HART_TP5_DevType,1597,Variable -ConnectionPoint_HART_TP5_DevRev,1598,Variable -ConnectionPoint_HART_TP5_DevTag,1599,Variable -ConnectionPoint_HART_TP5_DevPollAddr,1600,Variable -ConnectionPoint_HART_TP6,1601,ObjectType -ConnectionPoint_HART_TP6_ParameterSet,1602,Object -ConnectionPoint_HART_TP6_ParameterSet_ParameterIdentifier,1603,Variable -ConnectionPoint_HART_TP6_MethodSet,1604,Object -ConnectionPoint_HART_TP6_MethodSet_MethodIdentifier,1605,Method -ConnectionPoint_HART_TP6_GroupIdentifier,1606,Object -ConnectionPoint_HART_TP6_GroupIdentifier_UIElement,1607,Variable -ConnectionPoint_HART_TP6_Identification,1608,Object -ConnectionPoint_HART_TP6_Identification_UIElement,1609,Variable -ConnectionPoint_HART_TP6_Lock,1610,Object -ConnectionPoint_HART_TP6_Lock_Locked,1611,Variable -ConnectionPoint_HART_TP6_Lock_LockingClient,1612,Variable -ConnectionPoint_HART_TP6_Lock_LockingUser,1613,Variable -ConnectionPoint_HART_TP6_Lock_RemainingLockTime,1614,Variable -ConnectionPoint_HART_TP6_Lock_InitLock,1615,Method -ConnectionPoint_HART_TP6_Lock_InitLock_InputArguments,1616,Variable -ConnectionPoint_HART_TP6_Lock_InitLock_OutputArguments,1617,Variable -ConnectionPoint_HART_TP6_Lock_RenewLock,1618,Method -ConnectionPoint_HART_TP6_Lock_RenewLock_OutputArguments,1619,Variable -ConnectionPoint_HART_TP6_Lock_ExitLock,1620,Method -ConnectionPoint_HART_TP6_Lock_ExitLock_OutputArguments,1621,Variable -ConnectionPoint_HART_TP6_Lock_BreakLock,1622,Method -ConnectionPoint_HART_TP6_Lock_BreakLock_OutputArguments,1623,Variable -ConnectionPoint_HART_TP6_NetworkAddress,1624,Object -ConnectionPoint_HART_TP6_NetworkAddress_UIElement,1625,Variable -ConnectionPoint_HART_TP6_ProfileId,1626,Object -ConnectionPoint_HART_TP6_NetworkIdentifier,1627,Object -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock,1628,Object -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_Locked,1629,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_LockingClient,1630,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_LockingUser,1631,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_RemainingLockTime,1632,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_InitLock,1633,Method -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_InitLock_InputArguments,1634,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_InitLock_OutputArguments,1635,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_RenewLock,1636,Method -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_RenewLock_OutputArguments,1637,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_ExitLock,1638,Method -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_ExitLock_OutputArguments,1639,Variable -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_BreakLock,1640,Method -ConnectionPoint_HART_TP6_NetworkIdentifier_Lock_BreakLock_OutputArguments,1641,Variable -ConnectionPoint_HART_TP6_DevAddr,1642,Variable -ConnectionPoint_HART_TP6_DevMfg,1643,Variable -ConnectionPoint_HART_TP6_DevType,1644,Variable -ConnectionPoint_HART_TP6_DevRev,1645,Variable -ConnectionPoint_HART_TP6_DevTag,1646,Variable -ConnectionPoint_HART_TP6_DevPollAddr,1647,Variable -ConnectionPoint_HART_TP7,1648,ObjectType -ConnectionPoint_HART_TP7_ParameterSet,1649,Object -ConnectionPoint_HART_TP7_ParameterSet_ParameterIdentifier,1650,Variable -ConnectionPoint_HART_TP7_MethodSet,1651,Object -ConnectionPoint_HART_TP7_MethodSet_MethodIdentifier,1652,Method -ConnectionPoint_HART_TP7_GroupIdentifier,1653,Object -ConnectionPoint_HART_TP7_GroupIdentifier_UIElement,1654,Variable -ConnectionPoint_HART_TP7_Identification,1655,Object -ConnectionPoint_HART_TP7_Identification_UIElement,1656,Variable -ConnectionPoint_HART_TP7_Lock,1657,Object -ConnectionPoint_HART_TP7_Lock_Locked,1658,Variable -ConnectionPoint_HART_TP7_Lock_LockingClient,1659,Variable -ConnectionPoint_HART_TP7_Lock_LockingUser,1660,Variable -ConnectionPoint_HART_TP7_Lock_RemainingLockTime,1661,Variable -ConnectionPoint_HART_TP7_Lock_InitLock,1662,Method -ConnectionPoint_HART_TP7_Lock_InitLock_InputArguments,1663,Variable -ConnectionPoint_HART_TP7_Lock_InitLock_OutputArguments,1664,Variable -ConnectionPoint_HART_TP7_Lock_RenewLock,1665,Method -ConnectionPoint_HART_TP7_Lock_RenewLock_OutputArguments,1666,Variable -ConnectionPoint_HART_TP7_Lock_ExitLock,1667,Method -ConnectionPoint_HART_TP7_Lock_ExitLock_OutputArguments,1668,Variable -ConnectionPoint_HART_TP7_Lock_BreakLock,1669,Method -ConnectionPoint_HART_TP7_Lock_BreakLock_OutputArguments,1670,Variable -ConnectionPoint_HART_TP7_NetworkAddress,1671,Object -ConnectionPoint_HART_TP7_NetworkAddress_UIElement,1672,Variable -ConnectionPoint_HART_TP7_ProfileId,1673,Object -ConnectionPoint_HART_TP7_NetworkIdentifier,1674,Object -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock,1675,Object -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_Locked,1676,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_LockingClient,1677,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_LockingUser,1678,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_RemainingLockTime,1679,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_InitLock,1680,Method -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_InitLock_InputArguments,1681,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_InitLock_OutputArguments,1682,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_RenewLock,1683,Method -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_RenewLock_OutputArguments,1684,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_ExitLock,1685,Method -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_ExitLock_OutputArguments,1686,Variable -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_BreakLock,1687,Method -ConnectionPoint_HART_TP7_NetworkIdentifier_Lock_BreakLock_OutputArguments,1688,Variable -ConnectionPoint_HART_TP7_DevAddr,1689,Variable -ConnectionPoint_HART_TP7_DevMfg,1690,Variable -ConnectionPoint_HART_TP7_DevType,1691,Variable -ConnectionPoint_HART_TP7_DevRev,1692,Variable -ConnectionPoint_HART_TP7_DevTag,1693,Variable -ConnectionPoint_HART_TP7_DevPollAddr,1694,Variable -ConnectionPoint_ISA100_Wireless,1695,ObjectType -ConnectionPoint_ISA100_Wireless_ParameterSet,1696,Object -ConnectionPoint_ISA100_Wireless_ParameterSet_ParameterIdentifier,1697,Variable -ConnectionPoint_ISA100_Wireless_MethodSet,1698,Object -ConnectionPoint_ISA100_Wireless_MethodSet_MethodIdentifier,1699,Method -ConnectionPoint_ISA100_Wireless_GroupIdentifier,1700,Object -ConnectionPoint_ISA100_Wireless_GroupIdentifier_UIElement,1701,Variable -ConnectionPoint_ISA100_Wireless_Identification,1702,Object -ConnectionPoint_ISA100_Wireless_Identification_UIElement,1703,Variable -ConnectionPoint_ISA100_Wireless_Lock,1704,Object -ConnectionPoint_ISA100_Wireless_Lock_Locked,1705,Variable -ConnectionPoint_ISA100_Wireless_Lock_LockingClient,1706,Variable -ConnectionPoint_ISA100_Wireless_Lock_LockingUser,1707,Variable -ConnectionPoint_ISA100_Wireless_Lock_RemainingLockTime,1708,Variable -ConnectionPoint_ISA100_Wireless_Lock_InitLock,1709,Method -ConnectionPoint_ISA100_Wireless_Lock_InitLock_InputArguments,1710,Variable -ConnectionPoint_ISA100_Wireless_Lock_InitLock_OutputArguments,1711,Variable -ConnectionPoint_ISA100_Wireless_Lock_RenewLock,1712,Method -ConnectionPoint_ISA100_Wireless_Lock_RenewLock_OutputArguments,1713,Variable -ConnectionPoint_ISA100_Wireless_Lock_ExitLock,1714,Method -ConnectionPoint_ISA100_Wireless_Lock_ExitLock_OutputArguments,1715,Variable -ConnectionPoint_ISA100_Wireless_Lock_BreakLock,1716,Method -ConnectionPoint_ISA100_Wireless_Lock_BreakLock_OutputArguments,1717,Variable -ConnectionPoint_ISA100_Wireless_NetworkAddress,1718,Object -ConnectionPoint_ISA100_Wireless_NetworkAddress_UIElement,1719,Variable -ConnectionPoint_ISA100_Wireless_ProfileId,1720,Object -ConnectionPoint_ISA100_Wireless_NetworkIdentifier,1721,Object -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock,1722,Object -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_Locked,1723,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_LockingClient,1724,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_LockingUser,1725,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_RemainingLockTime,1726,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_InitLock,1727,Method -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_InitLock_InputArguments,1728,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_InitLock_OutputArguments,1729,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_RenewLock,1730,Method -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_RenewLock_OutputArguments,1731,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_ExitLock,1732,Method -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_ExitLock_OutputArguments,1733,Variable -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_BreakLock,1734,Method -ConnectionPoint_ISA100_Wireless_NetworkIdentifier_Lock_BreakLock_OutputArguments,1735,Variable -ConnectionPoint_ISA100_Wireless_IPAddress,1736,Variable -ConnectionPoint_ISA100_Wireless_DevMfg,1737,Variable -ConnectionPoint_ISA100_Wireless_DevType,1738,Variable -ConnectionPoint_ISA100_Wireless_DevRev,1739,Variable -ConnectionPoint_ISA100_Wireless_DevTag,1740,Variable -ConnectionPoint_ISA100_Wireless_DevPollAddr,1741,Variable -GenericConnectionPoint,1742,ObjectType -GenericConnectionPoint_ParameterSet,1743,Object -GenericConnectionPoint_ParameterSet_ParameterIdentifier,1744,Variable -GenericConnectionPoint_MethodSet,1745,Object -GenericConnectionPoint_MethodSet_MethodIdentifier,1746,Method -GenericConnectionPoint_GroupIdentifier,1747,Object -GenericConnectionPoint_GroupIdentifier_UIElement,1748,Variable -GenericConnectionPoint_Identification,1749,Object -GenericConnectionPoint_Identification_UIElement,1750,Variable -GenericConnectionPoint_Lock,1751,Object -GenericConnectionPoint_Lock_Locked,1752,Variable -GenericConnectionPoint_Lock_LockingClient,1753,Variable -GenericConnectionPoint_Lock_LockingUser,1754,Variable -GenericConnectionPoint_Lock_RemainingLockTime,1755,Variable -GenericConnectionPoint_Lock_InitLock,1756,Method -GenericConnectionPoint_Lock_InitLock_InputArguments,1757,Variable -GenericConnectionPoint_Lock_InitLock_OutputArguments,1758,Variable -GenericConnectionPoint_Lock_RenewLock,1759,Method -GenericConnectionPoint_Lock_RenewLock_OutputArguments,1760,Variable -GenericConnectionPoint_Lock_ExitLock,1761,Method -GenericConnectionPoint_Lock_ExitLock_OutputArguments,1762,Variable -GenericConnectionPoint_Lock_BreakLock,1763,Method -GenericConnectionPoint_Lock_BreakLock_OutputArguments,1764,Variable -GenericConnectionPoint_NetworkAddress,1765,Object -GenericConnectionPoint_NetworkAddress_UIElement,1766,Variable -GenericConnectionPoint_ProfileId,1767,Object -GenericConnectionPoint_NetworkIdentifier,1768,Object -GenericConnectionPoint_NetworkIdentifier_Lock,1769,Object -GenericConnectionPoint_NetworkIdentifier_Lock_Locked,1770,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_LockingClient,1771,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_LockingUser,1772,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_RemainingLockTime,1773,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_InitLock,1774,Method -GenericConnectionPoint_NetworkIdentifier_Lock_InitLock_InputArguments,1775,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_InitLock_OutputArguments,1776,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_RenewLock,1777,Method -GenericConnectionPoint_NetworkIdentifier_Lock_RenewLock_OutputArguments,1778,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_ExitLock,1779,Method -GenericConnectionPoint_NetworkIdentifier_Lock_ExitLock_OutputArguments,1780,Variable -GenericConnectionPoint_NetworkIdentifier_Lock_BreakLock,1781,Method -GenericConnectionPoint_NetworkIdentifier_Lock_BreakLock_OutputArguments,1782,Variable -GenericConnectionPoint_Address,1783,Variable -GenericConnectionPoint_ProtocolIdentifier,1784,Variable -SetAddressMethodGENERICType,1785,Method -SetAddressMethodGENERICType_InputArguments,1786,Variable -SetAddressMethodGENERICType_OutputArguments,1787,Variable -ServerCommunicationISA100_WirelessDeviceType,1788,ObjectType -ServerCommunicationISA100_WirelessDeviceType_ParameterSet,1789,Object -ServerCommunicationISA100_WirelessDeviceType_ParameterSet_ParameterIdentifier,1790,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet,1791,Object -ServerCommunicationISA100_WirelessDeviceType_MethodSet_MethodIdentifier,1792,Method -ServerCommunicationISA100_WirelessDeviceType_GroupIdentifier,1793,Object -ServerCommunicationISA100_WirelessDeviceType_GroupIdentifier_UIElement,1794,Variable -ServerCommunicationISA100_WirelessDeviceType_Identification,1795,Object -ServerCommunicationISA100_WirelessDeviceType_Identification_UIElement,1796,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock,1797,Object -ServerCommunicationISA100_WirelessDeviceType_Lock_Locked,1798,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_LockingClient,1799,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_LockingUser,1800,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_RemainingLockTime,1801,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_InitLock,1802,Method -ServerCommunicationISA100_WirelessDeviceType_Lock_InitLock_InputArguments,1803,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_InitLock_OutputArguments,1804,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_RenewLock,1805,Method -ServerCommunicationISA100_WirelessDeviceType_Lock_RenewLock_OutputArguments,1806,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_ExitLock,1807,Method -ServerCommunicationISA100_WirelessDeviceType_Lock_ExitLock_OutputArguments,1808,Variable -ServerCommunicationISA100_WirelessDeviceType_Lock_BreakLock,1809,Method -ServerCommunicationISA100_WirelessDeviceType_Lock_BreakLock_OutputArguments,1810,Variable -ServerCommunicationISA100_WirelessDeviceType_SerialNumber,1811,Variable -ServerCommunicationISA100_WirelessDeviceType_RevisionCounter,1812,Variable -ServerCommunicationISA100_WirelessDeviceType_Manufacturer,1813,Variable -ServerCommunicationISA100_WirelessDeviceType_Model,1814,Variable -ServerCommunicationISA100_WirelessDeviceType_DeviceManual,1815,Variable -ServerCommunicationISA100_WirelessDeviceType_DeviceRevision,1816,Variable -ServerCommunicationISA100_WirelessDeviceType_SoftwareRevision,1817,Variable -ServerCommunicationISA100_WirelessDeviceType_HardwareRevision,1818,Variable -ServerCommunicationISA100_WirelessDeviceType_DeviceClass,1819,Variable -ServerCommunicationISA100_WirelessDeviceType_DeviceHealth,1820,Variable -ServerCommunicationISA100_WirelessDeviceType_DeviceTypeImage,1821,Object -ServerCommunicationISA100_WirelessDeviceType_DeviceTypeImage_ImageIdentifier,1822,Variable -ServerCommunicationISA100_WirelessDeviceType_Documentation,1823,Object -ServerCommunicationISA100_WirelessDeviceType_Documentation_DocumentIdentifier,1824,Variable -ServerCommunicationISA100_WirelessDeviceType_ProtocolSupport,1825,Object -ServerCommunicationISA100_WirelessDeviceType_ProtocolSupport_ProtocolSupportIdentifier,1826,Variable -ServerCommunicationISA100_WirelessDeviceType_ImageSet,1827,Object -ServerCommunicationISA100_WirelessDeviceType_ImageSet_ImageIdentifier,1828,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier,1829,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_ParameterSet,1830,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,1831,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_MethodSet,1832,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_MethodSet_MethodIdentifier,1833,Method -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Identification,1834,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Identification_UIElement,1835,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock,1836,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_Locked,1837,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_LockingClient,1838,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_LockingUser,1839,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_RemainingLockTime,1840,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_InitLock,1841,Method -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_InitLock_InputArguments,1842,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,1843,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_RenewLock,1844,Method -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,1845,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_ExitLock,1846,Method -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,1847,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_BreakLock,1848,Method -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,1849,Variable -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_NetworkAddress,1850,Object -ServerCommunicationISA100_WirelessDeviceType_CPIdentifier_NetworkAddress_UIElement,1851,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_Scan,1852,Method -ServerCommunicationISA100_WirelessDeviceType_MethodSet_Scan_OutputArguments,1853,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_ResetScan,1854,Method -ServerCommunicationISA100_WirelessDeviceType_MethodSet_ResetScan_OutputArguments,1855,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_AddComponent,1856,Method -ServerCommunicationISA100_WirelessDeviceType_MethodSet_AddComponent_InputArguments,1857,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_AddComponent_OutputArguments,1858,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_RemoveComponent,1859,Method -ServerCommunicationISA100_WirelessDeviceType_MethodSet_RemoveComponent_InputArguments,1860,Variable -ServerCommunicationISA100_WirelessDeviceType_MethodSet_RemoveComponent_OutputArguments,1861,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider,1862,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ParameterSet,1863,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,1864,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet,1865,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_MethodIdentifier,1866,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Identification,1867,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Identification_UIElement,1868,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock,1869,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_Locked,1870,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_LockingClient,1871,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_LockingUser,1872,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_RemainingLockTime,1873,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_InitLock,1874,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_InitLock_InputArguments,1875,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_InitLock_OutputArguments,1876,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_RenewLock,1877,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,1878,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_ExitLock,1879,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,1880,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_BreakLock,1881,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,1882,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_SerialNumber,1883,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_RevisionCounter,1884,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Manufacturer,1885,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Model,1886,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceManual,1887,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceRevision,1888,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_SoftwareRevision,1889,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_HardwareRevision,1890,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceClass,1891,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceHealth,1892,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceTypeImage,1893,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,1894,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Documentation,1895,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_Documentation_DocumentIdentifier,1896,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ProtocolSupport,1897,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,1898,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ImageSet,1899,Object -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_ImageSet_ImageIdentifier,1900,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Disconnect,1901,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,1902,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,1903,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Connect,1904,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Connect_InputArguments,1905,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,1906,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Transfer,1907,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,1908,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,1909,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_GetPublishedData,1910,Method -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_GetPublishedData_InputArguments,1911,Variable -ServerCommunicationISA100_WirelessDeviceType_ServiceProvider_MethodSet_GetPublishedData_OutputArguments,1912,Variable -ServerCommunicationGENERICDeviceType,1913,ObjectType -ServerCommunicationGENERICDeviceType_ParameterSet,1914,Object -ServerCommunicationGENERICDeviceType_ParameterSet_ParameterIdentifier,1915,Variable -ServerCommunicationGENERICDeviceType_MethodSet,1916,Object -ServerCommunicationGENERICDeviceType_MethodSet_MethodIdentifier,1917,Method -ServerCommunicationGENERICDeviceType_GroupIdentifier,1918,Object -ServerCommunicationGENERICDeviceType_GroupIdentifier_UIElement,1919,Variable -ServerCommunicationGENERICDeviceType_Identification,1920,Object -ServerCommunicationGENERICDeviceType_Identification_UIElement,1921,Variable -ServerCommunicationGENERICDeviceType_Lock,1922,Object -ServerCommunicationGENERICDeviceType_Lock_Locked,1923,Variable -ServerCommunicationGENERICDeviceType_Lock_LockingClient,1924,Variable -ServerCommunicationGENERICDeviceType_Lock_LockingUser,1925,Variable -ServerCommunicationGENERICDeviceType_Lock_RemainingLockTime,1926,Variable -ServerCommunicationGENERICDeviceType_Lock_InitLock,1927,Method -ServerCommunicationGENERICDeviceType_Lock_InitLock_InputArguments,1928,Variable -ServerCommunicationGENERICDeviceType_Lock_InitLock_OutputArguments,1929,Variable -ServerCommunicationGENERICDeviceType_Lock_RenewLock,1930,Method -ServerCommunicationGENERICDeviceType_Lock_RenewLock_OutputArguments,1931,Variable -ServerCommunicationGENERICDeviceType_Lock_ExitLock,1932,Method -ServerCommunicationGENERICDeviceType_Lock_ExitLock_OutputArguments,1933,Variable -ServerCommunicationGENERICDeviceType_Lock_BreakLock,1934,Method -ServerCommunicationGENERICDeviceType_Lock_BreakLock_OutputArguments,1935,Variable -ServerCommunicationGENERICDeviceType_SerialNumber,1936,Variable -ServerCommunicationGENERICDeviceType_RevisionCounter,1937,Variable -ServerCommunicationGENERICDeviceType_Manufacturer,1938,Variable -ServerCommunicationGENERICDeviceType_Model,1939,Variable -ServerCommunicationGENERICDeviceType_DeviceManual,1940,Variable -ServerCommunicationGENERICDeviceType_DeviceRevision,1941,Variable -ServerCommunicationGENERICDeviceType_SoftwareRevision,1942,Variable -ServerCommunicationGENERICDeviceType_HardwareRevision,1943,Variable -ServerCommunicationGENERICDeviceType_DeviceClass,1944,Variable -ServerCommunicationGENERICDeviceType_DeviceHealth,1945,Variable -ServerCommunicationGENERICDeviceType_DeviceTypeImage,1946,Object -ServerCommunicationGENERICDeviceType_DeviceTypeImage_ImageIdentifier,1947,Variable -ServerCommunicationGENERICDeviceType_Documentation,1948,Object -ServerCommunicationGENERICDeviceType_Documentation_DocumentIdentifier,1949,Variable -ServerCommunicationGENERICDeviceType_ProtocolSupport,1950,Object -ServerCommunicationGENERICDeviceType_ProtocolSupport_ProtocolSupportIdentifier,1951,Variable -ServerCommunicationGENERICDeviceType_ImageSet,1952,Object -ServerCommunicationGENERICDeviceType_ImageSet_ImageIdentifier,1953,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier,1954,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_ParameterSet,1955,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_ParameterSet_ParameterIdentifier,1956,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_MethodSet,1957,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_MethodSet_MethodIdentifier,1958,Method -ServerCommunicationGENERICDeviceType_CPIdentifier_Identification,1959,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_Identification_UIElement,1960,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock,1961,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_Locked,1962,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_LockingClient,1963,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_LockingUser,1964,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_RemainingLockTime,1965,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_InitLock,1966,Method -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_InitLock_InputArguments,1967,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_InitLock_OutputArguments,1968,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_RenewLock,1969,Method -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_RenewLock_OutputArguments,1970,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_ExitLock,1971,Method -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_ExitLock_OutputArguments,1972,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_BreakLock,1973,Method -ServerCommunicationGENERICDeviceType_CPIdentifier_Lock_BreakLock_OutputArguments,1974,Variable -ServerCommunicationGENERICDeviceType_CPIdentifier_NetworkAddress,1975,Object -ServerCommunicationGENERICDeviceType_CPIdentifier_NetworkAddress_UIElement,1976,Variable -ServerCommunicationGENERICDeviceType_MethodSet_Scan,1977,Method -ServerCommunicationGENERICDeviceType_MethodSet_Scan_OutputArguments,1978,Variable -ServerCommunicationGENERICDeviceType_MethodSet_ResetScan,1979,Method -ServerCommunicationGENERICDeviceType_MethodSet_ResetScan_OutputArguments,1980,Variable -ServerCommunicationGENERICDeviceType_MethodSet_AddComponent,1981,Method -ServerCommunicationGENERICDeviceType_MethodSet_AddComponent_InputArguments,1982,Variable -ServerCommunicationGENERICDeviceType_MethodSet_AddComponent_OutputArguments,1983,Variable -ServerCommunicationGENERICDeviceType_MethodSet_RemoveComponent,1984,Method -ServerCommunicationGENERICDeviceType_MethodSet_RemoveComponent_InputArguments,1985,Variable -ServerCommunicationGENERICDeviceType_MethodSet_RemoveComponent_OutputArguments,1986,Variable -ServerCommunicationGENERICDeviceType_ProtocolIdentifier,1987,Variable -ServerCommunicationGENERICDeviceType_MethodSet_SetAddress,1988,Method -ServerCommunicationGENERICDeviceType_MethodSet_SetAddress_InputArguments,1989,Variable -ServerCommunicationGENERICDeviceType_MethodSet_SetAddress_OutputArguments,1990,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider,1991,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_ParameterSet,1992,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_ParameterSet_ParameterIdentifier,1993,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet,1994,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_MethodIdentifier,1995,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_Identification,1996,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_Identification_UIElement,1997,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock,1998,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_Locked,1999,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_LockingClient,2000,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_LockingUser,2001,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_RemainingLockTime,2002,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_InitLock,2003,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_InitLock_InputArguments,2004,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_InitLock_OutputArguments,2005,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_RenewLock,2006,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_RenewLock_OutputArguments,2007,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_ExitLock,2008,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_ExitLock_OutputArguments,2009,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_BreakLock,2010,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_Lock_BreakLock_OutputArguments,2011,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_SerialNumber,2012,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_RevisionCounter,2013,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Manufacturer,2014,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Model,2015,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceManual,2016,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceRevision,2017,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_SoftwareRevision,2018,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_HardwareRevision,2019,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceClass,2020,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceHealth,2021,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceTypeImage,2022,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_DeviceTypeImage_ImageIdentifier,2023,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_Documentation,2024,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_Documentation_DocumentIdentifier,2025,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_ProtocolSupport,2026,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_ProtocolSupport_ProtocolSupportIdentifier,2027,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_ImageSet,2028,Object -ServerCommunicationGENERICDeviceType_ServiceProvider_ImageSet_ImageIdentifier,2029,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Disconnect,2030,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Disconnect_InputArguments,2031,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Disconnect_OutputArguments,2032,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Connect,2033,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Connect_InputArguments,2034,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Connect_OutputArguments,2035,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Transfer,2036,Method -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Transfer_InputArguments,2037,Variable -ServerCommunicationGENERICDeviceType_ServiceProvider_MethodSet_Transfer_OutputArguments,2038,Variable -ConnectMethodISA100_WirelessType,2039,Method -ConnectMethodISA100_WirelessType_InputArguments,2040,Variable -ConnectMethodISA100_WirelessType_OutputArguments,2041,Variable -ConnectMethodGENERICType,2042,Method -ConnectMethodGENERICType_InputArguments,2043,Variable -ConnectMethodGENERICType_OutputArguments,2044,Variable -TransferMethodISA100_WirelessType,2045,Method -TransferMethodISA100_WirelessType_InputArguments,2046,Variable -TransferMethodISA100_WirelessType_OutputArguments,2047,Variable -EddDataTypeEnum,2048,DataType -EddDataTypeEnum_EnumValues,2049,Variable -EddDataTypeInfo,2050,DataType -TransferMethodGENERICType,2051,Method -TransferMethodGENERICType_InputArguments,2052,Variable -TransferMethodGENERICType_OutputArguments,2053,Variable -GetPublishedDataMethodISA100_WirelessType,2054,Method -GetPublishedDataMethodISA100_WirelessType_InputArguments,2055,Variable -GetPublishedDataMethodISA100_WirelessType_OutputArguments,2056,Variable -ServerCommunicationISA100_WirelessServiceType,2057,ObjectType -ServerCommunicationISA100_WirelessServiceType_ParameterSet,2058,Object -ServerCommunicationISA100_WirelessServiceType_ParameterSet_ParameterIdentifier,2059,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet,2060,Object -ServerCommunicationISA100_WirelessServiceType_MethodSet_MethodIdentifier,2061,Method -ServerCommunicationISA100_WirelessServiceType_GroupIdentifier,2062,Object -ServerCommunicationISA100_WirelessServiceType_GroupIdentifier_UIElement,2063,Variable -ServerCommunicationISA100_WirelessServiceType_Identification,2064,Object -ServerCommunicationISA100_WirelessServiceType_Identification_UIElement,2065,Variable -ServerCommunicationISA100_WirelessServiceType_Lock,2066,Object -ServerCommunicationISA100_WirelessServiceType_Lock_Locked,2067,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_LockingClient,2068,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_LockingUser,2069,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_RemainingLockTime,2070,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_InitLock,2071,Method -ServerCommunicationISA100_WirelessServiceType_Lock_InitLock_InputArguments,2072,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_InitLock_OutputArguments,2073,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_RenewLock,2074,Method -ServerCommunicationISA100_WirelessServiceType_Lock_RenewLock_OutputArguments,2075,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_ExitLock,2076,Method -ServerCommunicationISA100_WirelessServiceType_Lock_ExitLock_OutputArguments,2077,Variable -ServerCommunicationISA100_WirelessServiceType_Lock_BreakLock,2078,Method -ServerCommunicationISA100_WirelessServiceType_Lock_BreakLock_OutputArguments,2079,Variable -ServerCommunicationISA100_WirelessServiceType_SerialNumber,2080,Variable -ServerCommunicationISA100_WirelessServiceType_RevisionCounter,2081,Variable -ServerCommunicationISA100_WirelessServiceType_Manufacturer,2082,Variable -ServerCommunicationISA100_WirelessServiceType_Model,2083,Variable -ServerCommunicationISA100_WirelessServiceType_DeviceManual,2084,Variable -ServerCommunicationISA100_WirelessServiceType_DeviceRevision,2085,Variable -ServerCommunicationISA100_WirelessServiceType_SoftwareRevision,2086,Variable -ServerCommunicationISA100_WirelessServiceType_HardwareRevision,2087,Variable -ServerCommunicationISA100_WirelessServiceType_DeviceClass,2088,Variable -ServerCommunicationISA100_WirelessServiceType_DeviceHealth,2089,Variable -ServerCommunicationISA100_WirelessServiceType_DeviceTypeImage,2090,Object -ServerCommunicationISA100_WirelessServiceType_DeviceTypeImage_ImageIdentifier,2091,Variable -ServerCommunicationISA100_WirelessServiceType_Documentation,2092,Object -ServerCommunicationISA100_WirelessServiceType_Documentation_DocumentIdentifier,2093,Variable -ServerCommunicationISA100_WirelessServiceType_ProtocolSupport,2094,Object -ServerCommunicationISA100_WirelessServiceType_ProtocolSupport_ProtocolSupportIdentifier,2095,Variable -ServerCommunicationISA100_WirelessServiceType_ImageSet,2096,Object -ServerCommunicationISA100_WirelessServiceType_ImageSet_ImageIdentifier,2097,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier,2098,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_ParameterSet,2099,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,2100,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_MethodSet,2101,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_MethodSet_MethodIdentifier,2102,Method -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Identification,2103,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Identification_UIElement,2104,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock,2105,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_Locked,2106,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_LockingClient,2107,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_LockingUser,2108,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_RemainingLockTime,2109,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_InitLock,2110,Method -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_InitLock_InputArguments,2111,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_InitLock_OutputArguments,2112,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_RenewLock,2113,Method -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,2114,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_ExitLock,2115,Method -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,2116,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_BreakLock,2117,Method -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,2118,Variable -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_NetworkAddress,2119,Object -ServerCommunicationISA100_WirelessServiceType_CPIdentifier_NetworkAddress_UIElement,2120,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Disconnect,2121,Method -ServerCommunicationISA100_WirelessServiceType_MethodSet_Disconnect_InputArguments,2122,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Disconnect_OutputArguments,2123,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Connect,2124,Method -ServerCommunicationISA100_WirelessServiceType_MethodSet_Connect_InputArguments,2125,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Connect_OutputArguments,2126,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Transfer,2127,Method -ServerCommunicationISA100_WirelessServiceType_MethodSet_Transfer_InputArguments,2128,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_Transfer_OutputArguments,2129,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_GetPublishedData,2130,Method -ServerCommunicationISA100_WirelessServiceType_MethodSet_GetPublishedData_InputArguments,2131,Variable -ServerCommunicationISA100_WirelessServiceType_MethodSet_GetPublishedData_OutputArguments,2132,Variable -ServerCommunicationGENERICServiceType,2133,ObjectType -ServerCommunicationGENERICServiceType_ParameterSet,2134,Object -ServerCommunicationGENERICServiceType_ParameterSet_ParameterIdentifier,2135,Variable -ServerCommunicationGENERICServiceType_MethodSet,2136,Object -ServerCommunicationGENERICServiceType_MethodSet_MethodIdentifier,2137,Method -ServerCommunicationGENERICServiceType_GroupIdentifier,2138,Object -ServerCommunicationGENERICServiceType_GroupIdentifier_UIElement,2139,Variable -ServerCommunicationGENERICServiceType_Identification,2140,Object -ServerCommunicationGENERICServiceType_Identification_UIElement,2141,Variable -ServerCommunicationGENERICServiceType_Lock,2142,Object -ServerCommunicationGENERICServiceType_Lock_Locked,2143,Variable -ServerCommunicationGENERICServiceType_Lock_LockingClient,2144,Variable -ServerCommunicationGENERICServiceType_Lock_LockingUser,2145,Variable -ServerCommunicationGENERICServiceType_Lock_RemainingLockTime,2146,Variable -ServerCommunicationGENERICServiceType_Lock_InitLock,2147,Method -ServerCommunicationGENERICServiceType_Lock_InitLock_InputArguments,2148,Variable -ServerCommunicationGENERICServiceType_Lock_InitLock_OutputArguments,2149,Variable -ServerCommunicationGENERICServiceType_Lock_RenewLock,2150,Method -ServerCommunicationGENERICServiceType_Lock_RenewLock_OutputArguments,2151,Variable -ServerCommunicationGENERICServiceType_Lock_ExitLock,2152,Method -ServerCommunicationGENERICServiceType_Lock_ExitLock_OutputArguments,2153,Variable -ServerCommunicationGENERICServiceType_Lock_BreakLock,2154,Method -ServerCommunicationGENERICServiceType_Lock_BreakLock_OutputArguments,2155,Variable -ServerCommunicationGENERICServiceType_SerialNumber,2156,Variable -ServerCommunicationGENERICServiceType_RevisionCounter,2157,Variable -ServerCommunicationGENERICServiceType_Manufacturer,2158,Variable -ServerCommunicationGENERICServiceType_Model,2159,Variable -ServerCommunicationGENERICServiceType_DeviceManual,2160,Variable -ServerCommunicationGENERICServiceType_DeviceRevision,2161,Variable -ServerCommunicationGENERICServiceType_SoftwareRevision,2162,Variable -ServerCommunicationGENERICServiceType_HardwareRevision,2163,Variable -ServerCommunicationGENERICServiceType_DeviceClass,2164,Variable -ServerCommunicationGENERICServiceType_DeviceHealth,2165,Variable -ServerCommunicationGENERICServiceType_DeviceTypeImage,2166,Object -ServerCommunicationGENERICServiceType_DeviceTypeImage_ImageIdentifier,2167,Variable -ServerCommunicationGENERICServiceType_Documentation,2168,Object -ServerCommunicationGENERICServiceType_Documentation_DocumentIdentifier,2169,Variable -ServerCommunicationGENERICServiceType_ProtocolSupport,2170,Object -ServerCommunicationGENERICServiceType_ProtocolSupport_ProtocolSupportIdentifier,2171,Variable -ServerCommunicationGENERICServiceType_ImageSet,2172,Object -ServerCommunicationGENERICServiceType_ImageSet_ImageIdentifier,2173,Variable -ServerCommunicationGENERICServiceType_CPIdentifier,2174,Object -ServerCommunicationGENERICServiceType_CPIdentifier_ParameterSet,2175,Object -ServerCommunicationGENERICServiceType_CPIdentifier_ParameterSet_ParameterIdentifier,2176,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_MethodSet,2177,Object -ServerCommunicationGENERICServiceType_CPIdentifier_MethodSet_MethodIdentifier,2178,Method -ServerCommunicationGENERICServiceType_CPIdentifier_Identification,2179,Object -ServerCommunicationGENERICServiceType_CPIdentifier_Identification_UIElement,2180,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock,2181,Object -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_Locked,2182,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_LockingClient,2183,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_LockingUser,2184,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_RemainingLockTime,2185,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_InitLock,2186,Method -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_InitLock_InputArguments,2187,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_InitLock_OutputArguments,2188,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_RenewLock,2189,Method -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_RenewLock_OutputArguments,2190,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_ExitLock,2191,Method -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_ExitLock_OutputArguments,2192,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_BreakLock,2193,Method -ServerCommunicationGENERICServiceType_CPIdentifier_Lock_BreakLock_OutputArguments,2194,Variable -ServerCommunicationGENERICServiceType_CPIdentifier_NetworkAddress,2195,Object -ServerCommunicationGENERICServiceType_CPIdentifier_NetworkAddress_UIElement,2196,Variable -ServerCommunicationGENERICServiceType_MethodSet_Disconnect,2197,Method -ServerCommunicationGENERICServiceType_MethodSet_Disconnect_InputArguments,2198,Variable -ServerCommunicationGENERICServiceType_MethodSet_Disconnect_OutputArguments,2199,Variable -ServerCommunicationGENERICServiceType_MethodSet_Connect,2200,Method -ServerCommunicationGENERICServiceType_MethodSet_Connect_InputArguments,2201,Variable -ServerCommunicationGENERICServiceType_MethodSet_Connect_OutputArguments,2202,Variable -ServerCommunicationGENERICServiceType_MethodSet_Transfer,2203,Method -ServerCommunicationGENERICServiceType_MethodSet_Transfer_InputArguments,2204,Variable -ServerCommunicationGENERICServiceType_MethodSet_Transfer_OutputArguments,2205,Variable -EddDataTypeInfo_Encoding_DefaultXml,2206,Object -OpcUaFdi7_XmlSchema,2207,Variable -OpcUaFdi7_XmlSchema_DataTypeVersion,2208,Variable -OpcUaFdi7_XmlSchema_NamespaceUri,2209,Variable -OpcUaFdi7_XmlSchema_EddDataTypeInfo,2210,Variable -OpcUaFdi7_XmlSchema_EddDataTypeInfo_DataTypeVersion,2211,Variable -OpcUaFdi7_XmlSchema_EddDataTypeInfo_DictionaryFragment,2212,Variable -EddDataTypeInfo_Encoding_DefaultBinary,2213,Object -OpcUaFdi7_BinarySchema,2214,Variable -OpcUaFdi7_BinarySchema_DataTypeVersion,2215,Variable -OpcUaFdi7_BinarySchema_NamespaceUri,2216,Variable -OpcUaFdi7_BinarySchema_EddDataTypeInfo,2217,Variable -OpcUaFdi7_BinarySchema_EddDataTypeInfo_DataTypeVersion,2218,Variable -OpcUaFdi7_BinarySchema_EddDataTypeInfo_DictionaryFragment,2219,Variable diff --git a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.xml b/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.xml deleted file mode 100644 index 0525e9c3..00000000 --- a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.1.xml +++ /dev/null @@ -1,722 +0,0 @@ - - - - - http://fdi-cooperation.com/OPCUA/FDI7/ - http://opcfoundation.org/UA/DI/ - http://opcfoundation.org/UA/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.3.xml b/ModelCompiler/Design/OpcUaFdiPart7Model_v1.3.xml deleted file mode 100644 index 5ceceb9c..00000000 --- a/ModelCompiler/Design/OpcUaFdiPart7Model_v1.3.xml +++ /dev/null @@ -1,721 +0,0 @@ - - - - - http://fdi-cooperation.com/OPCUA/FDI7/ - http://opcfoundation.org/UA/DI/ - http://opcfoundation.org/UA/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelCompiler/Design/StandardsTypeV1.csv b/ModelCompiler/Design/StandardsTypeV1.csv deleted file mode 100644 index 433b227c..00000000 --- a/ModelCompiler/Design/StandardsTypeV1.csv +++ /dev/null @@ -1,1535 +0,0 @@ -Boolean,1,DataType -SByte,2,DataType -Byte,3,DataType -Int16,4,DataType -UInt16,5,DataType -Int32,6,DataType -UInt32,7,DataType -Int64,8,DataType -UInt64,9,DataType -Float,10,DataType -Double,11,DataType -String,12,DataType -DateTime,13,DataType -Guid,14,DataType -ByteString,15,DataType -XmlElement,16,DataType -NodeId,17,DataType -ExpandedNodeId,18,DataType -StatusCode,19,DataType -QualifiedName,20,DataType -LocalizedText,21,DataType -Structure,22,DataType -DataValue,23,DataType -BaseDataType,24,DataType -DiagnosticInfo,25,DataType -Number,26,DataType -Integer,27,DataType -UInteger,28,DataType -Enumeration,29,DataType -Image,30,DataType -References,31,ReferenceType -NonHierarchicalReferences,32,ReferenceType -HierarchicalReferences,33,ReferenceType -HasChild,34,ReferenceType -Organizes,35,ReferenceType -HasEventSource,36,ReferenceType -HasModellingRule,37,ReferenceType -HasEncoding,38,ReferenceType -HasDescription,39,ReferenceType -HasTypeDefinition,40,ReferenceType -GeneratesEvent,41,ReferenceType -GeneratesAuditEvent,42,ReferenceType -Aggregates,44,ReferenceType -HasSubtype,45,ReferenceType -HasProperty,46,ReferenceType -HasComponent,47,ReferenceType -HasNotifier,48,ReferenceType -HasOrderedComponent,49,ReferenceType -HasModelParent,50,ReferenceType -FromState,51,ReferenceType -ToState,52,ReferenceType -HasCause,53,ReferenceType -HasEffect,54,ReferenceType -HasHistoricalConfiguration,56,ReferenceType -HasHistoricalEventConfiguration,57,ReferenceType -BaseObjectType,58,ObjectType -FolderType,61,ObjectType -BaseVariableType,62,VariableType -BaseDataVariableType,63,VariableType -PropertyType,68,VariableType -DataTypeDescriptionType,69,VariableType -DataTypeDictionaryType,72,VariableType -DataTypeSystemType,75,ObjectType -DataTypeEncodingType,76,ObjectType -ModellingRuleType,77,ObjectType -ModellingRule_Mandatory,78,Object -ModellingRule_MandatoryShared,79,Object -ModellingRule_Optional,80,Object -ModellingRule_CardinalityRestriction,82,Object -ModellingRule_ExposesItsArray,83,Object -RootFolder,84,Object -ObjectsFolder,85,Object -TypesFolder,86,Object -ViewsFolder,87,Object -ObjectTypesFolder,88,Object -VariableTypesFolder,89,Object -DataTypesFolder,90,Object -ReferenceTypesFolder,91,Object -XmlSchema_TypeSystem,92,Object -OPCBinarySchema_TypeSystem,93,Object -BaseObjectType_Icon,97,Variable -BaseObjectType_NodeVersion,98,Variable -BaseDataVariableType_Icon,99,Variable -BaseDataVariableType_NodeVersion,100,Variable -BaseDataVariableType_TimeZone,101,Variable -BaseDataVariableType_DaylightSavingTime,102,Variable -BaseDataVariableType_EnumStrings,103,Variable -DataTypeDescriptionType_DataTypeVersion,104,Variable -DataTypeDescriptionType_DictionaryFragment,105,Variable -DataTypeDictionaryType_DataTypeVersion,106,Variable -DataTypeDictionaryType_NamespaceUri,107,Variable -Structure_Encoding_DefaultXml,108,Object -Structure_Encoding_DefaultBinary,109,Object -ModellingRuleType_NamingRule,111,Variable -ModellingRule_Mandatory_NamingRule,112,Variable -ModellingRule_Optional_NamingRule,113,Variable -ModellingRule_ExposesItsArray_NamingRule,114,Variable -ModellingRule_CardinalityRestriction_NamingRule,115,Variable -ModellingRule_MandatoryShared_NamingRule,116,Variable -HasSubStateMachine,117,ReferenceType -HasEventHistory,118,ReferenceType -BaseDataVariableType_AllowNulls,119,Variable -NamingRuleType,120,DataType -IdType,256,DataType -NodeClass,257,DataType -Node,258,DataType -Node_Encoding_DefaultXml,259,Object -Node_Encoding_DefaultBinary,260,Object -ObjectNode,261,DataType -ObjectNode_Encoding_DefaultXml,262,Object -ObjectNode_Encoding_DefaultBinary,263,Object -ObjectTypeNode,264,DataType -ObjectTypeNode_Encoding_DefaultXml,265,Object -ObjectTypeNode_Encoding_DefaultBinary,266,Object -VariableNode,267,DataType -VariableNode_Encoding_DefaultXml,268,Object -VariableNode_Encoding_DefaultBinary,269,Object -VariableTypeNode,270,DataType -VariableTypeNode_Encoding_DefaultXml,271,Object -VariableTypeNode_Encoding_DefaultBinary,272,Object -ReferenceTypeNode,273,DataType -ReferenceTypeNode_Encoding_DefaultXml,274,Object -ReferenceTypeNode_Encoding_DefaultBinary,275,Object -MethodNode,276,DataType -MethodNode_Encoding_DefaultXml,277,Object -MethodNode_Encoding_DefaultBinary,278,Object -ViewNode,279,DataType -ViewNode_Encoding_DefaultXml,280,Object -ViewNode_Encoding_DefaultBinary,281,Object -DataTypeNode,282,DataType -DataTypeNode_Encoding_DefaultXml,283,Object -DataTypeNode_Encoding_DefaultBinary,284,Object -ReferenceNode,285,DataType -ReferenceNode_Encoding_DefaultXml,286,Object -ReferenceNode_Encoding_DefaultBinary,287,Object -IntegerId,288,DataType -Counter,289,DataType -Duration,290,DataType -NumericRange,291,DataType -Time,292,DataType -Date,293,DataType -UtcTime,294,DataType -LocaleId,295,DataType -Argument,296,DataType -Argument_Encoding_DefaultXml,297,Object -Argument_Encoding_DefaultBinary,298,Object -StatusResult,299,DataType -StatusResult_Encoding_DefaultXml,300,Object -StatusResult_Encoding_DefaultBinary,301,Object -MessageSecurityMode,302,DataType -UserTokenType,303,DataType -UserTokenPolicy,304,DataType -UserTokenPolicy_Encoding_DefaultXml,305,Object -UserTokenPolicy_Encoding_DefaultBinary,306,Object -ApplicationType,307,DataType -ApplicationDescription,308,DataType -ApplicationDescription_Encoding_DefaultXml,309,Object -ApplicationDescription_Encoding_DefaultBinary,310,Object -ApplicationInstanceCertificate,311,DataType -EndpointDescription,312,DataType -EndpointDescription_Encoding_DefaultXml,313,Object -EndpointDescription_Encoding_DefaultBinary,314,Object -SecurityTokenRequestType,315,DataType -UserIdentityToken,316,DataType -UserIdentityToken_Encoding_DefaultXml,317,Object -UserIdentityToken_Encoding_DefaultBinary,318,Object -AnonymousIdentityToken,319,DataType -AnonymousIdentityToken_Encoding_DefaultXml,320,Object -AnonymousIdentityToken_Encoding_DefaultBinary,321,Object -UserNameIdentityToken,322,DataType -UserNameIdentityToken_Encoding_DefaultXml,323,Object -UserNameIdentityToken_Encoding_DefaultBinary,324,Object -X509IdentityToken,325,DataType -X509IdentityToken_Encoding_DefaultXml,326,Object -X509IdentityToken_Encoding_DefaultBinary,327,Object -EndpointConfiguration,331,DataType -EndpointConfiguration_Encoding_DefaultXml,332,Object -EndpointConfiguration_Encoding_DefaultBinary,333,Object -ComplianceLevel,334,DataType -SupportedProfile,335,DataType -SupportedProfile_Encoding_DefaultXml,336,Object -SupportedProfile_Encoding_DefaultBinary,337,Object -BuildInfo,338,DataType -BuildInfo_Encoding_DefaultXml,339,Object -BuildInfo_Encoding_DefaultBinary,340,Object -SoftwareCertificate,341,DataType -SoftwareCertificate_Encoding_DefaultXml,342,Object -SoftwareCertificate_Encoding_DefaultBinary,343,Object -SignedSoftwareCertificate,344,DataType -SignedSoftwareCertificate_Encoding_DefaultXml,345,Object -SignedSoftwareCertificate_Encoding_DefaultBinary,346,Object -AttributeWriteMask,347,DataType -NodeAttributesMask,348,DataType -NodeAttributes,349,DataType -NodeAttributes_Encoding_DefaultXml,350,Object -NodeAttributes_Encoding_DefaultBinary,351,Object -ObjectAttributes,352,DataType -ObjectAttributes_Encoding_DefaultXml,353,Object -ObjectAttributes_Encoding_DefaultBinary,354,Object -VariableAttributes,355,DataType -VariableAttributes_Encoding_DefaultXml,356,Object -VariableAttributes_Encoding_DefaultBinary,357,Object -MethodAttributes,358,DataType -MethodAttributes_Encoding_DefaultXml,359,Object -MethodAttributes_Encoding_DefaultBinary,360,Object -ObjectTypeAttributes,361,DataType -ObjectTypeAttributes_Encoding_DefaultXml,362,Object -ObjectTypeAttributes_Encoding_DefaultBinary,363,Object -VariableTypeAttributes,364,DataType -VariableTypeAttributes_Encoding_DefaultXml,365,Object -VariableTypeAttributes_Encoding_DefaultBinary,366,Object -ReferenceTypeAttributes,367,DataType -ReferenceTypeAttributes_Encoding_DefaultXml,368,Object -ReferenceTypeAttributes_Encoding_DefaultBinary,369,Object -DataTypeAttributes,370,DataType -DataTypeAttributes_Encoding_DefaultXml,371,Object -DataTypeAttributes_Encoding_DefaultBinary,372,Object -ViewAttributes,373,DataType -ViewAttributes_Encoding_DefaultXml,374,Object -ViewAttributes_Encoding_DefaultBinary,375,Object -AddNodesItem,376,DataType -AddNodesItem_Encoding_DefaultXml,377,Object -AddNodesItem_Encoding_DefaultBinary,378,Object -AddReferencesItem,379,DataType -AddReferencesItem_Encoding_DefaultXml,380,Object -AddReferencesItem_Encoding_DefaultBinary,381,Object -DeleteNodesItem,382,DataType -DeleteNodesItem_Encoding_DefaultXml,383,Object -DeleteNodesItem_Encoding_DefaultBinary,384,Object -DeleteReferencesItem,385,DataType -DeleteReferencesItem_Encoding_DefaultXml,386,Object -DeleteReferencesItem_Encoding_DefaultBinary,387,Object -SessionAuthenticationToken,388,DataType -RequestHeader,389,DataType -RequestHeader_Encoding_DefaultXml,390,Object -RequestHeader_Encoding_DefaultBinary,391,Object -ResponseHeader,392,DataType -ResponseHeader_Encoding_DefaultXml,393,Object -ResponseHeader_Encoding_DefaultBinary,394,Object -ServiceFault,395,DataType -ServiceFault_Encoding_DefaultXml,396,Object -ServiceFault_Encoding_DefaultBinary,397,Object -EnumeratedTestType,398,DataType -ScalarTestType,399,DataType -ScalarTestType_Encoding_DefaultXml,400,Object -ScalarTestType_Encoding_DefaultBinary,401,Object -ArrayTestType,402,DataType -ArrayTestType_Encoding_DefaultXml,403,Object -ArrayTestType_Encoding_DefaultBinary,404,Object -CompositeTestType,405,DataType -CompositeTestType_Encoding_DefaultXml,406,Object -CompositeTestType_Encoding_DefaultBinary,407,Object -TestStackRequest,408,DataType -TestStackRequest_Encoding_DefaultXml,409,Object -TestStackRequest_Encoding_DefaultBinary,410,Object -TestStackResponse,411,DataType -TestStackResponse_Encoding_DefaultXml,412,Object -TestStackResponse_Encoding_DefaultBinary,413,Object -TestStackExRequest,414,DataType -TestStackExRequest_Encoding_DefaultXml,415,Object -TestStackExRequest_Encoding_DefaultBinary,416,Object -TestStackExResponse,417,DataType -TestStackExResponse_Encoding_DefaultXml,418,Object -TestStackExResponse_Encoding_DefaultBinary,419,Object -FindServersRequest,420,DataType -FindServersRequest_Encoding_DefaultXml,421,Object -FindServersRequest_Encoding_DefaultBinary,422,Object -FindServersResponse,423,DataType -FindServersResponse_Encoding_DefaultXml,424,Object -FindServersResponse_Encoding_DefaultBinary,425,Object -GetEndpointsRequest,426,DataType -GetEndpointsRequest_Encoding_DefaultXml,427,Object -GetEndpointsRequest_Encoding_DefaultBinary,428,Object -GetEndpointsResponse,429,DataType -GetEndpointsResponse_Encoding_DefaultXml,430,Object -GetEndpointsResponse_Encoding_DefaultBinary,431,Object -RegisteredServer,432,DataType -RegisteredServer_Encoding_DefaultXml,433,Object -RegisteredServer_Encoding_DefaultBinary,434,Object -RegisterServerRequest,435,DataType -RegisterServerRequest_Encoding_DefaultXml,436,Object -RegisterServerRequest_Encoding_DefaultBinary,437,Object -RegisterServerResponse,438,DataType -RegisterServerResponse_Encoding_DefaultXml,439,Object -RegisterServerResponse_Encoding_DefaultBinary,440,Object -ChannelSecurityToken,441,DataType -ChannelSecurityToken_Encoding_DefaultXml,442,Object -ChannelSecurityToken_Encoding_DefaultBinary,443,Object -OpenSecureChannelRequest,444,DataType -OpenSecureChannelRequest_Encoding_DefaultXml,445,Object -OpenSecureChannelRequest_Encoding_DefaultBinary,446,Object -OpenSecureChannelResponse,447,DataType -OpenSecureChannelResponse_Encoding_DefaultXml,448,Object -OpenSecureChannelResponse_Encoding_DefaultBinary,449,Object -CloseSecureChannelRequest,450,DataType -CloseSecureChannelRequest_Encoding_DefaultXml,451,Object -CloseSecureChannelRequest_Encoding_DefaultBinary,452,Object -CloseSecureChannelResponse,453,DataType -CloseSecureChannelResponse_Encoding_DefaultXml,454,Object -CloseSecureChannelResponse_Encoding_DefaultBinary,455,Object -SignatureData,456,DataType -SignatureData_Encoding_DefaultXml,457,Object -SignatureData_Encoding_DefaultBinary,458,Object -CreateSessionRequest,459,DataType -CreateSessionRequest_Encoding_DefaultXml,460,Object -CreateSessionRequest_Encoding_DefaultBinary,461,Object -CreateSessionResponse,462,DataType -CreateSessionResponse_Encoding_DefaultXml,463,Object -CreateSessionResponse_Encoding_DefaultBinary,464,Object -ActivateSessionRequest,465,DataType -ActivateSessionRequest_Encoding_DefaultXml,466,Object -ActivateSessionRequest_Encoding_DefaultBinary,467,Object -ActivateSessionResponse,468,DataType -ActivateSessionResponse_Encoding_DefaultXml,469,Object -ActivateSessionResponse_Encoding_DefaultBinary,470,Object -CloseSessionRequest,471,DataType -CloseSessionRequest_Encoding_DefaultXml,472,Object -CloseSessionRequest_Encoding_DefaultBinary,473,Object -CloseSessionResponse,474,DataType -CloseSessionResponse_Encoding_DefaultXml,475,Object -CloseSessionResponse_Encoding_DefaultBinary,476,Object -CancelRequest,477,DataType -CancelRequest_Encoding_DefaultXml,478,Object -CancelRequest_Encoding_DefaultBinary,479,Object -CancelResponse,480,DataType -CancelResponse_Encoding_DefaultXml,481,Object -CancelResponse_Encoding_DefaultBinary,482,Object -AddNodesResult,483,DataType -AddNodesResult_Encoding_DefaultXml,484,Object -AddNodesResult_Encoding_DefaultBinary,485,Object -AddNodesRequest,486,DataType -AddNodesRequest_Encoding_DefaultXml,487,Object -AddNodesRequest_Encoding_DefaultBinary,488,Object -AddNodesResponse,489,DataType -AddNodesResponse_Encoding_DefaultXml,490,Object -AddNodesResponse_Encoding_DefaultBinary,491,Object -AddReferencesRequest,492,DataType -AddReferencesRequest_Encoding_DefaultXml,493,Object -AddReferencesRequest_Encoding_DefaultBinary,494,Object -AddReferencesResponse,495,DataType -AddReferencesResponse_Encoding_DefaultXml,496,Object -AddReferencesResponse_Encoding_DefaultBinary,497,Object -DeleteNodesRequest,498,DataType -DeleteNodesRequest_Encoding_DefaultXml,499,Object -DeleteNodesRequest_Encoding_DefaultBinary,500,Object -DeleteNodesResponse,501,DataType -DeleteNodesResponse_Encoding_DefaultXml,502,Object -DeleteNodesResponse_Encoding_DefaultBinary,503,Object -DeleteReferencesRequest,504,DataType -DeleteReferencesRequest_Encoding_DefaultXml,505,Object -DeleteReferencesRequest_Encoding_DefaultBinary,506,Object -DeleteReferencesResponse,507,DataType -DeleteReferencesResponse_Encoding_DefaultXml,508,Object -DeleteReferencesResponse_Encoding_DefaultBinary,509,Object -BrowseDirection,510,DataType -ViewDescription,511,DataType -ViewDescription_Encoding_DefaultXml,512,Object -ViewDescription_Encoding_DefaultBinary,513,Object -BrowseDescription,514,DataType -BrowseDescription_Encoding_DefaultXml,515,Object -BrowseDescription_Encoding_DefaultBinary,516,Object -BrowseResultMask,517,DataType -ReferenceDescription,518,DataType -ReferenceDescription_Encoding_DefaultXml,519,Object -ReferenceDescription_Encoding_DefaultBinary,520,Object -ContinuationPoint,521,DataType -BrowseResult,522,DataType -BrowseResult_Encoding_DefaultXml,523,Object -BrowseResult_Encoding_DefaultBinary,524,Object -BrowseRequest,525,DataType -BrowseRequest_Encoding_DefaultXml,526,Object -BrowseRequest_Encoding_DefaultBinary,527,Object -BrowseResponse,528,DataType -BrowseResponse_Encoding_DefaultXml,529,Object -BrowseResponse_Encoding_DefaultBinary,530,Object -BrowseNextRequest,531,DataType -BrowseNextRequest_Encoding_DefaultXml,532,Object -BrowseNextRequest_Encoding_DefaultBinary,533,Object -BrowseNextResponse,534,DataType -BrowseNextResponse_Encoding_DefaultXml,535,Object -BrowseNextResponse_Encoding_DefaultBinary,536,Object -RelativePathElement,537,DataType -RelativePathElement_Encoding_DefaultXml,538,Object -RelativePathElement_Encoding_DefaultBinary,539,Object -RelativePath,540,DataType -RelativePath_Encoding_DefaultXml,541,Object -RelativePath_Encoding_DefaultBinary,542,Object -BrowsePath,543,DataType -BrowsePath_Encoding_DefaultXml,544,Object -BrowsePath_Encoding_DefaultBinary,545,Object -BrowsePathTarget,546,DataType -BrowsePathTarget_Encoding_DefaultXml,547,Object -BrowsePathTarget_Encoding_DefaultBinary,548,Object -BrowsePathResult,549,DataType -BrowsePathResult_Encoding_DefaultXml,550,Object -BrowsePathResult_Encoding_DefaultBinary,551,Object -TranslateBrowsePathsToNodeIdsRequest,552,DataType -TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultXml,553,Object -TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultBinary,554,Object -TranslateBrowsePathsToNodeIdsResponse,555,DataType -TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultXml,556,Object -TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultBinary,557,Object -RegisterNodesRequest,558,DataType -RegisterNodesRequest_Encoding_DefaultXml,559,Object -RegisterNodesRequest_Encoding_DefaultBinary,560,Object -RegisterNodesResponse,561,DataType -RegisterNodesResponse_Encoding_DefaultXml,562,Object -RegisterNodesResponse_Encoding_DefaultBinary,563,Object -UnregisterNodesRequest,564,DataType -UnregisterNodesRequest_Encoding_DefaultXml,565,Object -UnregisterNodesRequest_Encoding_DefaultBinary,566,Object -UnregisterNodesResponse,567,DataType -UnregisterNodesResponse_Encoding_DefaultXml,568,Object -UnregisterNodesResponse_Encoding_DefaultBinary,569,Object -QueryDataDescription,570,DataType -QueryDataDescription_Encoding_DefaultXml,571,Object -QueryDataDescription_Encoding_DefaultBinary,572,Object -NodeTypeDescription,573,DataType -NodeTypeDescription_Encoding_DefaultXml,574,Object -NodeTypeDescription_Encoding_DefaultBinary,575,Object -FilterOperator,576,DataType -QueryDataSet,577,DataType -QueryDataSet_Encoding_DefaultXml,578,Object -QueryDataSet_Encoding_DefaultBinary,579,Object -NodeReference,580,DataType -NodeReference_Encoding_DefaultXml,581,Object -NodeReference_Encoding_DefaultBinary,582,Object -ContentFilterElement,583,DataType -ContentFilterElement_Encoding_DefaultXml,584,Object -ContentFilterElement_Encoding_DefaultBinary,585,Object -ContentFilter,586,DataType -ContentFilter_Encoding_DefaultXml,587,Object -ContentFilter_Encoding_DefaultBinary,588,Object -FilterOperand,589,DataType -FilterOperand_Encoding_DefaultXml,590,Object -FilterOperand_Encoding_DefaultBinary,591,Object -ElementOperand,592,DataType -ElementOperand_Encoding_DefaultXml,593,Object -ElementOperand_Encoding_DefaultBinary,594,Object -LiteralOperand,595,DataType -LiteralOperand_Encoding_DefaultXml,596,Object -LiteralOperand_Encoding_DefaultBinary,597,Object -AttributeOperand,598,DataType -AttributeOperand_Encoding_DefaultXml,599,Object -AttributeOperand_Encoding_DefaultBinary,600,Object -SimpleAttributeOperand,601,DataType -SimpleAttributeOperand_Encoding_DefaultXml,602,Object -SimpleAttributeOperand_Encoding_DefaultBinary,603,Object -ContentFilterElementResult,604,DataType -ContentFilterElementResult_Encoding_DefaultXml,605,Object -ContentFilterElementResult_Encoding_DefaultBinary,606,Object -ContentFilterResult,607,DataType -ContentFilterResult_Encoding_DefaultXml,608,Object -ContentFilterResult_Encoding_DefaultBinary,609,Object -ParsingResult,610,DataType -ParsingResult_Encoding_DefaultXml,611,Object -ParsingResult_Encoding_DefaultBinary,612,Object -QueryFirstRequest,613,DataType -QueryFirstRequest_Encoding_DefaultXml,614,Object -QueryFirstRequest_Encoding_DefaultBinary,615,Object -QueryFirstResponse,616,DataType -QueryFirstResponse_Encoding_DefaultXml,617,Object -QueryFirstResponse_Encoding_DefaultBinary,618,Object -QueryNextRequest,619,DataType -QueryNextRequest_Encoding_DefaultXml,620,Object -QueryNextRequest_Encoding_DefaultBinary,621,Object -QueryNextResponse,622,DataType -QueryNextResponse_Encoding_DefaultXml,623,Object -QueryNextResponse_Encoding_DefaultBinary,624,Object -TimestampsToReturn,625,DataType -ReadValueId,626,DataType -ReadValueId_Encoding_DefaultXml,627,Object -ReadValueId_Encoding_DefaultBinary,628,Object -ReadRequest,629,DataType -ReadRequest_Encoding_DefaultXml,630,Object -ReadRequest_Encoding_DefaultBinary,631,Object -ReadResponse,632,DataType -ReadResponse_Encoding_DefaultXml,633,Object -ReadResponse_Encoding_DefaultBinary,634,Object -HistoryReadValueId,635,DataType -HistoryReadValueId_Encoding_DefaultXml,636,Object -HistoryReadValueId_Encoding_DefaultBinary,637,Object -HistoryReadResult,638,DataType -HistoryReadResult_Encoding_DefaultXml,639,Object -HistoryReadResult_Encoding_DefaultBinary,640,Object -HistoryReadDetails,641,DataType -HistoryReadDetails_Encoding_DefaultXml,642,Object -HistoryReadDetails_Encoding_DefaultBinary,643,Object -ReadEventDetails,644,DataType -ReadEventDetails_Encoding_DefaultXml,645,Object -ReadEventDetails_Encoding_DefaultBinary,646,Object -ReadRawModifiedDetails,647,DataType -ReadRawModifiedDetails_Encoding_DefaultXml,648,Object -ReadRawModifiedDetails_Encoding_DefaultBinary,649,Object -ReadProcessedDetails,650,DataType -ReadProcessedDetails_Encoding_DefaultXml,651,Object -ReadProcessedDetails_Encoding_DefaultBinary,652,Object -ReadAtTimeDetails,653,DataType -ReadAtTimeDetails_Encoding_DefaultXml,654,Object -ReadAtTimeDetails_Encoding_DefaultBinary,655,Object -HistoryData,656,DataType -HistoryData_Encoding_DefaultXml,657,Object -HistoryData_Encoding_DefaultBinary,658,Object -HistoryEvent,659,DataType -HistoryEvent_Encoding_DefaultXml,660,Object -HistoryEvent_Encoding_DefaultBinary,661,Object -HistoryReadRequest,662,DataType -HistoryReadRequest_Encoding_DefaultXml,663,Object -HistoryReadRequest_Encoding_DefaultBinary,664,Object -HistoryReadResponse,665,DataType -HistoryReadResponse_Encoding_DefaultXml,666,Object -HistoryReadResponse_Encoding_DefaultBinary,667,Object -WriteValue,668,DataType -WriteValue_Encoding_DefaultXml,669,Object -WriteValue_Encoding_DefaultBinary,670,Object -WriteRequest,671,DataType -WriteRequest_Encoding_DefaultXml,672,Object -WriteRequest_Encoding_DefaultBinary,673,Object -WriteResponse,674,DataType -WriteResponse_Encoding_DefaultXml,675,Object -WriteResponse_Encoding_DefaultBinary,676,Object -HistoryUpdateDetails,677,DataType -HistoryUpdateDetails_Encoding_DefaultXml,678,Object -HistoryUpdateDetails_Encoding_DefaultBinary,679,Object -UpdateDataDetails,680,DataType -UpdateDataDetails_Encoding_DefaultXml,681,Object -UpdateDataDetails_Encoding_DefaultBinary,682,Object -UpdateEventDetails,683,DataType -UpdateEventDetails_Encoding_DefaultXml,684,Object -UpdateEventDetails_Encoding_DefaultBinary,685,Object -DeleteRawModifiedDetails,686,DataType -DeleteRawModifiedDetails_Encoding_DefaultXml,687,Object -DeleteRawModifiedDetails_Encoding_DefaultBinary,688,Object -DeleteAtTimeDetails,689,DataType -DeleteAtTimeDetails_Encoding_DefaultXml,690,Object -DeleteAtTimeDetails_Encoding_DefaultBinary,691,Object -DeleteEventDetails,692,DataType -DeleteEventDetails_Encoding_DefaultXml,693,Object -DeleteEventDetails_Encoding_DefaultBinary,694,Object -HistoryUpdateResult,695,DataType -HistoryUpdateResult_Encoding_DefaultXml,696,Object -HistoryUpdateResult_Encoding_DefaultBinary,697,Object -HistoryUpdateRequest,698,DataType -HistoryUpdateRequest_Encoding_DefaultXml,699,Object -HistoryUpdateRequest_Encoding_DefaultBinary,700,Object -HistoryUpdateResponse,701,DataType -HistoryUpdateResponse_Encoding_DefaultXml,702,Object -HistoryUpdateResponse_Encoding_DefaultBinary,703,Object -CallMethodRequest,704,DataType -CallMethodRequest_Encoding_DefaultXml,705,Object -CallMethodRequest_Encoding_DefaultBinary,706,Object -CallMethodResult,707,DataType -CallMethodResult_Encoding_DefaultXml,708,Object -CallMethodResult_Encoding_DefaultBinary,709,Object -CallRequest,710,DataType -CallRequest_Encoding_DefaultXml,711,Object -CallRequest_Encoding_DefaultBinary,712,Object -CallResponse,713,DataType -CallResponse_Encoding_DefaultXml,714,Object -CallResponse_Encoding_DefaultBinary,715,Object -MonitoringMode,716,DataType -DataChangeTrigger,717,DataType -DeadbandType,718,DataType -MonitoringFilter,719,DataType -MonitoringFilter_Encoding_DefaultXml,720,Object -MonitoringFilter_Encoding_DefaultBinary,721,Object -DataChangeFilter,722,DataType -DataChangeFilter_Encoding_DefaultXml,723,Object -DataChangeFilter_Encoding_DefaultBinary,724,Object -EventFilter,725,DataType -EventFilter_Encoding_DefaultXml,726,Object -EventFilter_Encoding_DefaultBinary,727,Object -AggregateFilter,728,DataType -AggregateFilter_Encoding_DefaultXml,729,Object -AggregateFilter_Encoding_DefaultBinary,730,Object -MonitoringFilterResult,731,DataType -MonitoringFilterResult_Encoding_DefaultXml,732,Object -MonitoringFilterResult_Encoding_DefaultBinary,733,Object -EventFilterResult,734,DataType -EventFilterResult_Encoding_DefaultXml,735,Object -EventFilterResult_Encoding_DefaultBinary,736,Object -AggregateFilterResult,737,DataType -AggregateFilterResult_Encoding_DefaultXml,738,Object -AggregateFilterResult_Encoding_DefaultBinary,739,Object -MonitoringParameters,740,DataType -MonitoringParameters_Encoding_DefaultXml,741,Object -MonitoringParameters_Encoding_DefaultBinary,742,Object -MonitoredItemCreateRequest,743,DataType -MonitoredItemCreateRequest_Encoding_DefaultXml,744,Object -MonitoredItemCreateRequest_Encoding_DefaultBinary,745,Object -MonitoredItemCreateResult,746,DataType -MonitoredItemCreateResult_Encoding_DefaultXml,747,Object -MonitoredItemCreateResult_Encoding_DefaultBinary,748,Object -CreateMonitoredItemsRequest,749,DataType -CreateMonitoredItemsRequest_Encoding_DefaultXml,750,Object -CreateMonitoredItemsRequest_Encoding_DefaultBinary,751,Object -CreateMonitoredItemsResponse,752,DataType -CreateMonitoredItemsResponse_Encoding_DefaultXml,753,Object -CreateMonitoredItemsResponse_Encoding_DefaultBinary,754,Object -MonitoredItemModifyRequest,755,DataType -MonitoredItemModifyRequest_Encoding_DefaultXml,756,Object -MonitoredItemModifyRequest_Encoding_DefaultBinary,757,Object -MonitoredItemModifyResult,758,DataType -MonitoredItemModifyResult_Encoding_DefaultXml,759,Object -MonitoredItemModifyResult_Encoding_DefaultBinary,760,Object -ModifyMonitoredItemsRequest,761,DataType -ModifyMonitoredItemsRequest_Encoding_DefaultXml,762,Object -ModifyMonitoredItemsRequest_Encoding_DefaultBinary,763,Object -ModifyMonitoredItemsResponse,764,DataType -ModifyMonitoredItemsResponse_Encoding_DefaultXml,765,Object -ModifyMonitoredItemsResponse_Encoding_DefaultBinary,766,Object -SetMonitoringModeRequest,767,DataType -SetMonitoringModeRequest_Encoding_DefaultXml,768,Object -SetMonitoringModeRequest_Encoding_DefaultBinary,769,Object -SetMonitoringModeResponse,770,DataType -SetMonitoringModeResponse_Encoding_DefaultXml,771,Object -SetMonitoringModeResponse_Encoding_DefaultBinary,772,Object -SetTriggeringRequest,773,DataType -SetTriggeringRequest_Encoding_DefaultXml,774,Object -SetTriggeringRequest_Encoding_DefaultBinary,775,Object -SetTriggeringResponse,776,DataType -SetTriggeringResponse_Encoding_DefaultXml,777,Object -SetTriggeringResponse_Encoding_DefaultBinary,778,Object -DeleteMonitoredItemsRequest,779,DataType -DeleteMonitoredItemsRequest_Encoding_DefaultXml,780,Object -DeleteMonitoredItemsRequest_Encoding_DefaultBinary,781,Object -DeleteMonitoredItemsResponse,782,DataType -DeleteMonitoredItemsResponse_Encoding_DefaultXml,783,Object -DeleteMonitoredItemsResponse_Encoding_DefaultBinary,784,Object -CreateSubscriptionRequest,785,DataType -CreateSubscriptionRequest_Encoding_DefaultXml,786,Object -CreateSubscriptionRequest_Encoding_DefaultBinary,787,Object -CreateSubscriptionResponse,788,DataType -CreateSubscriptionResponse_Encoding_DefaultXml,789,Object -CreateSubscriptionResponse_Encoding_DefaultBinary,790,Object -ModifySubscriptionRequest,791,DataType -ModifySubscriptionRequest_Encoding_DefaultXml,792,Object -ModifySubscriptionRequest_Encoding_DefaultBinary,793,Object -ModifySubscriptionResponse,794,DataType -ModifySubscriptionResponse_Encoding_DefaultXml,795,Object -ModifySubscriptionResponse_Encoding_DefaultBinary,796,Object -SetPublishingModeRequest,797,DataType -SetPublishingModeRequest_Encoding_DefaultXml,798,Object -SetPublishingModeRequest_Encoding_DefaultBinary,799,Object -SetPublishingModeResponse,800,DataType -SetPublishingModeResponse_Encoding_DefaultXml,801,Object -SetPublishingModeResponse_Encoding_DefaultBinary,802,Object -NotificationMessage,803,DataType -NotificationMessage_Encoding_DefaultXml,804,Object -NotificationMessage_Encoding_DefaultBinary,805,Object -MonitoredItemNotification,806,DataType -MonitoredItemNotification_Encoding_DefaultXml,807,Object -MonitoredItemNotification_Encoding_DefaultBinary,808,Object -DataChangeNotification,809,DataType -DataChangeNotification_Encoding_DefaultXml,810,Object -DataChangeNotification_Encoding_DefaultBinary,811,Object -StatusChangeNotification,818,DataType -StatusChangeNotification_Encoding_DefaultXml,819,Object -StatusChangeNotification_Encoding_DefaultBinary,820,Object -SubscriptionAcknowledgement,821,DataType -SubscriptionAcknowledgement_Encoding_DefaultXml,822,Object -SubscriptionAcknowledgement_Encoding_DefaultBinary,823,Object -PublishRequest,824,DataType -PublishRequest_Encoding_DefaultXml,825,Object -PublishRequest_Encoding_DefaultBinary,826,Object -PublishResponse,827,DataType -PublishResponse_Encoding_DefaultXml,828,Object -PublishResponse_Encoding_DefaultBinary,829,Object -RepublishRequest,830,DataType -RepublishRequest_Encoding_DefaultXml,831,Object -RepublishRequest_Encoding_DefaultBinary,832,Object -RepublishResponse,833,DataType -RepublishResponse_Encoding_DefaultXml,834,Object -RepublishResponse_Encoding_DefaultBinary,835,Object -TransferResult,836,DataType -TransferResult_Encoding_DefaultXml,837,Object -TransferResult_Encoding_DefaultBinary,838,Object -TransferSubscriptionsRequest,839,DataType -TransferSubscriptionsRequest_Encoding_DefaultXml,840,Object -TransferSubscriptionsRequest_Encoding_DefaultBinary,841,Object -TransferSubscriptionsResponse,842,DataType -TransferSubscriptionsResponse_Encoding_DefaultXml,843,Object -TransferSubscriptionsResponse_Encoding_DefaultBinary,844,Object -DeleteSubscriptionsRequest,845,DataType -DeleteSubscriptionsRequest_Encoding_DefaultXml,846,Object -DeleteSubscriptionsRequest_Encoding_DefaultBinary,847,Object -DeleteSubscriptionsResponse,848,DataType -DeleteSubscriptionsResponse_Encoding_DefaultXml,849,Object -DeleteSubscriptionsResponse_Encoding_DefaultBinary,850,Object -RedundancySupport,851,DataType -ServerState,852,DataType -RedundantServerDataType,853,DataType -RedundantServerDataType_Encoding_DefaultXml,854,Object -RedundantServerDataType_Encoding_DefaultBinary,855,Object -SamplingRateDiagnosticsDataType,856,DataType -SamplingRateDiagnosticsDataType_Encoding_DefaultXml,857,Object -SamplingRateDiagnosticsDataType_Encoding_DefaultBinary,858,Object -ServerDiagnosticsSummaryDataType,859,DataType -ServerDiagnosticsSummaryDataType_Encoding_DefaultXml,860,Object -ServerDiagnosticsSummaryDataType_Encoding_DefaultBinary,861,Object -ServerStatusDataType,862,DataType -ServerStatusDataType_Encoding_DefaultXml,863,Object -ServerStatusDataType_Encoding_DefaultBinary,864,Object -SessionDiagnosticsDataType,865,DataType -SessionDiagnosticsDataType_Encoding_DefaultXml,866,Object -SessionDiagnosticsDataType_Encoding_DefaultBinary,867,Object -SessionSecurityDiagnosticsDataType,868,DataType -SessionSecurityDiagnosticsDataType_Encoding_DefaultXml,869,Object -SessionSecurityDiagnosticsDataType_Encoding_DefaultBinary,870,Object -ServiceCounterDataType,871,DataType -ServiceCounterDataType_Encoding_DefaultXml,872,Object -ServiceCounterDataType_Encoding_DefaultBinary,873,Object -SubscriptionDiagnosticsDataType,874,DataType -SubscriptionDiagnosticsDataType_Encoding_DefaultXml,875,Object -SubscriptionDiagnosticsDataType_Encoding_DefaultBinary,876,Object -ModelChangeStructureDataType,877,DataType -ModelChangeStructureDataType_Encoding_DefaultXml,878,Object -ModelChangeStructureDataType_Encoding_DefaultBinary,879,Object -ModelChangeStructureVerbMask,880,DataType -Range,884,DataType -Range_Encoding_DefaultXml,885,Object -Range_Encoding_DefaultBinary,886,Object -EUInformation,887,DataType -EUInformation_Encoding_DefaultXml,888,Object -EUInformation_Encoding_DefaultBinary,889,Object -ExceptionDeviationFormat,890,DataType -Annotation,891,DataType -Annotation_Encoding_DefaultXml,892,Object -Annotation_Encoding_DefaultBinary,893,Object -ProgramDiagnosticDataType,894,DataType -ProgramDiagnosticDataType_Encoding_DefaultXml,895,Object -ProgramDiagnosticDataType_Encoding_DefaultBinary,896,Object -SemanticChangeStructureDataType,897,DataType -SemanticChangeStructureDataType_Encoding_DefaultXml,898,Object -SemanticChangeStructureDataType_Encoding_DefaultBinary,899,Object -HistoryUpdateMode,913,DataType -EventNotificationList,914,DataType -EventNotificationList_Encoding_DefaultXml,915,Object -EventNotificationList_Encoding_DefaultBinary,916,Object -EventFieldList,917,DataType -EventFieldList_Encoding_DefaultXml,918,Object -EventFieldList_Encoding_DefaultBinary,919,Object -HistoryEventFieldList,920,DataType -HistoryEventFieldList_Encoding_DefaultXml,921,Object -HistoryEventFieldList_Encoding_DefaultBinary,922,Object -InsertReplaceEventDetails,926,DataType -InsertReplaceEventDetails_Encoding_DefaultXml,927,Object -InsertReplaceEventDetails_Encoding_DefaultBinary,928,Object -HistoryUpdateEventResult,929,DataType -HistoryUpdateEventResult_Encoding_DefaultXml,930,Object -HistoryUpdateEventResult_Encoding_DefaultBinary,931,Object -IssuedIdentityToken,938,DataType -IssuedIdentityToken_Encoding_DefaultXml,939,Object -IssuedIdentityToken_Encoding_DefaultBinary,940,Object -NotificationData,945,DataType -NotificationData_Encoding_DefaultXml,946,Object -NotificationData_Encoding_DefaultBinary,947,Object -AggregateConfiguration,948,DataType -AggregateConfiguration_Encoding_DefaultXml,949,Object -AggregateConfiguration_Encoding_DefaultBinary,950,Object -ImageBMP,2000,DataType -ImageGIF,2001,DataType -ImageJPG,2002,DataType -ImagePNG,2003,DataType -ServerType,2004,ObjectType -ServerType_ServerArray,2005,Variable -ServerType_NamespaceArray,2006,Variable -ServerType_ServerStatus,2007,Variable -ServerType_ServiceLevel,2008,Variable -ServerType_ServerCapabilities,2009,Object -ServerType_ServerDiagnostics,2010,Object -ServerType_VendorServerInfo,2011,Object -ServerType_ServerRedundancy,2012,Object -ServerCapabilitiesType,2013,ObjectType -ServerCapabilitiesType_ServerProfileArray,2014,Variable -ServerCapabilitiesType_LocaleIdArray,2016,Variable -ServerCapabilitiesType_MinSupportedSampleRate,2017,Variable -ServerCapabilitiesType_ModellingRules,2019,Object -ServerDiagnosticsType,2020,ObjectType -ServerDiagnosticsType_ServerDiagnosticsSummary,2021,Variable -ServerDiagnosticsType_SamplingRateDiagnosticsArray,2022,Variable -ServerDiagnosticsType_SubscriptionDiagnosticsArray,2023,Variable -ServerDiagnosticsType_EnabledFlag,2025,Variable -SessionsDiagnosticsSummaryType,2026,ObjectType -SessionsDiagnosticsSummaryType_SessionDiagnosticsArray,2027,Variable -SessionsDiagnosticsSummaryType_SessionSecurityDiagnosticsArray,2028,Variable -SessionDiagnosticsObjectType,2029,ObjectType -SessionDiagnosticsObjectType_SessionDiagnostics,2030,Variable -SessionDiagnosticsObjectType_SessionSecurityDiagnostics,2031,Variable -SessionDiagnosticsObjectType_SubscriptionDiagnosticsArray,2032,Variable -VendorServerInfoType,2033,ObjectType -ServerRedundancyType,2034,ObjectType -ServerRedundancyType_RedundancySupport,2035,Variable -TransparentRedundancyType,2036,ObjectType -TransparentRedundancyType_CurrentServerId,2037,Variable -TransparentRedundancyType_RedundantServerArray,2038,Variable -NonTransparentRedundancyType,2039,ObjectType -NonTransparentRedundancyType_ServerUriArray,2040,Variable -BaseEventType,2041,ObjectType -BaseEventType_EventId,2042,Variable -BaseEventType_EventType,2043,Variable -BaseEventType_SourceNode,2044,Variable -BaseEventType_SourceName,2045,Variable -BaseEventType_Time,2046,Variable -BaseEventType_ReceiveTime,2047,Variable -BaseEventType_TimeZone,2048,Variable -BaseEventType_DaylightSavingTime,2049,Variable -BaseEventType_Message,2050,Variable -BaseEventType_Severity,2051,Variable -AuditEventType,2052,ObjectType -AuditEventType_ActionTimeStamp,2053,Variable -AuditEventType_Status,2054,Variable -AuditEventType_ServerId,2055,Variable -AuditEventType_ClientAuditEntryId,2056,Variable -AuditEventType_ClientUserId,2057,Variable -AuditSecurityEventType,2058,ObjectType -AuditChannelEventType,2059,ObjectType -AuditOpenSecureChannelEventType,2060,ObjectType -AuditOpenSecureChannelEventType_ClientCertificate,2061,Variable -AuditOpenSecureChannelEventType_RequestType,2062,Variable -AuditOpenSecureChannelEventType_SecurityPolicyUri,2063,Variable -AuditOpenSecureChannelEventType_SecurityMode,2065,Variable -AuditOpenSecureChannelEventType_RequestedLifetime,2066,Variable -AuditSessionEventType,2069,ObjectType -AuditSessionEventType_SessionId,2070,Variable -AuditCreateSessionEventType,2071,ObjectType -AuditCreateSessionEventType_SecureChannelId,2072,Variable -AuditCreateSessionEventType_ClientCertificate,2073,Variable -AuditCreateSessionEventType_RevisedSessionTimeout,2074,Variable -AuditActivateSessionEventType,2075,ObjectType -AuditActivateSessionEventType_ClientSoftwareCertificates,2076,Variable -AuditActivateSessionEventType_UserIdentityToken,2077,Variable -AuditCancelEventType,2078,ObjectType -AuditCancelEventType_RequestHandle,2079,Variable -AuditCertificateEventType,2080,ObjectType -AuditCertificateEventType_Certificate,2081,Variable -AuditCertificateDataMismatchEventType,2082,ObjectType -AuditCertificateDataMismatchEventType_InvalidHostname,2083,Variable -AuditCertificateDataMismatchEventType_InvalidUri,2084,Variable -AuditCertificateExpiredEventType,2085,ObjectType -AuditCertificateInvalidEventType,2086,ObjectType -AuditCertificateUntrustedEventType,2087,ObjectType -AuditCertificateRevokedEventType,2088,ObjectType -AuditCertificateMismatchEventType,2089,ObjectType -AuditNodeManagementEventType,2090,ObjectType -AuditAddNodesEventType,2091,ObjectType -AuditAddNodesEventType_NodesToAdd,2092,Variable -AuditDeleteNodesEventType,2093,ObjectType -AuditDeleteNodesEventType_NodesToDelete,2094,Variable -AuditAddReferencesEventType,2095,ObjectType -AuditAddReferencesEventType_ReferencesToAdd,2096,Variable -AuditDeleteReferencesEventType,2097,ObjectType -AuditDeleteReferencesEventType_ReferencesToDelete,2098,Variable -AuditUpdateEventType,2099,ObjectType -AuditWriteUpdateEventType,2100,ObjectType -AuditWriteUpdateEventType_IndexRange,2101,Variable -AuditWriteUpdateEventType_OldValue,2102,Variable -AuditWriteUpdateEventType_NewValue,2103,Variable -AuditHistoryUpdateEventType,2104,ObjectType -AuditUpdateMethodEventType,2127,ObjectType -AuditUpdateMethodEventType_MethodId,2128,Variable -AuditUpdateMethodEventType_InputArguments,2129,Variable -SystemEventType,2130,ObjectType -DeviceFailureEventType,2131,ObjectType -BaseModelChangeEventType,2132,ObjectType -GeneralModelChangeEventType,2133,ObjectType -GeneralModelChangeEventType_Changes,2134,Variable -ServerVendorCapabilityType,2137,VariableType -ServerStatusType,2138,VariableType -ServerStatusType_StartTime,2139,Variable -ServerStatusType_CurrentTime,2140,Variable -ServerStatusType_State,2141,Variable -ServerStatusType_BuildInfo,2142,Variable -ServerDiagnosticsSummaryType,2150,VariableType -ServerDiagnosticsSummaryType_ServerViewCount,2151,Variable -ServerDiagnosticsSummaryType_CurrentSessionCount,2152,Variable -ServerDiagnosticsSummaryType_CumulatedSessionCount,2153,Variable -ServerDiagnosticsSummaryType_SecurityRejectedSessionCount,2154,Variable -ServerDiagnosticsSummaryType_RejectedSessionCount,2155,Variable -ServerDiagnosticsSummaryType_SessionTimeoutCount,2156,Variable -ServerDiagnosticsSummaryType_SessionAbortCount,2157,Variable -ServerDiagnosticsSummaryType_SamplingRateCount,2158,Variable -ServerDiagnosticsSummaryType_PublishingIntervalCount,2159,Variable -ServerDiagnosticsSummaryType_CurrentSubscriptionCount,2160,Variable -ServerDiagnosticsSummaryType_CumulatedSubscriptionCount,2161,Variable -ServerDiagnosticsSummaryType_SecurityRejectedRequestsCount,2162,Variable -ServerDiagnosticsSummaryType_RejectedRequestsCount,2163,Variable -SamplingRateDiagnosticsArrayType,2164,VariableType -SamplingRateDiagnosticsType,2165,VariableType -SamplingRateDiagnosticsType_SamplingRate,2166,Variable -SamplingRateDiagnosticsType_SamplingErrorCount,2167,Variable -SamplingRateDiagnosticsType_SampledMonitoredItemsCount,2168,Variable -SamplingRateDiagnosticsType_MaxSampledMonitoredItemsCount,2169,Variable -SamplingRateDiagnosticsType_DisabledMonitoredItemsSamplingCount,2170,Variable -SubscriptionDiagnosticsArrayType,2171,VariableType -SubscriptionDiagnosticsType,2172,VariableType -SubscriptionDiagnosticsType_SessionId,2173,Variable -SubscriptionDiagnosticsType_SubscriptionId,2174,Variable -SubscriptionDiagnosticsType_Priority,2175,Variable -SubscriptionDiagnosticsType_PublishingInterval,2176,Variable -SubscriptionDiagnosticsType_MaxKeepAliveCount,2177,Variable -SubscriptionDiagnosticsType_LifetimeCount,2178,Variable -SubscriptionDiagnosticsType_MaxNotificationsPerPublish,2179,Variable -SubscriptionDiagnosticsType_PublishingEnabled,2180,Variable -SubscriptionDiagnosticsType_ModifyCount,2181,Variable -SubscriptionDiagnosticsType_EnableCount,2182,Variable -SubscriptionDiagnosticsType_DisableCount,2183,Variable -SubscriptionDiagnosticsType_RepublishRequestCount,2184,Variable -SubscriptionDiagnosticsType_RepublishMessageRequestCount,2185,Variable -SubscriptionDiagnosticsType_RepublishMessageCount,2186,Variable -SubscriptionDiagnosticsType_TransferRequestCount,2187,Variable -SubscriptionDiagnosticsType_TransferredToAltClientCount,2188,Variable -SubscriptionDiagnosticsType_TransferredToSameClientCount,2189,Variable -SubscriptionDiagnosticsType_PublishRequestCount,2190,Variable -SubscriptionDiagnosticsType_DataChangeNotificationsCount,2191,Variable -SubscriptionDiagnosticsType_NotificationsCount,2193,Variable -SubscriptionDiagnosticsType_LateStateCount,2194,Variable -SubscriptionDiagnosticsType_KeepAliveStateCount,2195,Variable -SessionDiagnosticsArrayType,2196,VariableType -SessionDiagnosticsVariableType,2197,VariableType -SessionDiagnosticsVariableType_SessionId,2198,Variable -SessionDiagnosticsVariableType_SessionName,2199,Variable -SessionDiagnosticsVariableType_ClientDescription,2200,Variable -SessionDiagnosticsVariableType_ServerUri,2201,Variable -SessionDiagnosticsVariableType_EndpointUrl,2202,Variable -SessionDiagnosticsVariableType_LocaleIds,2203,Variable -SessionDiagnosticsVariableType_ActualSessionTimeout,2204,Variable -SessionDiagnosticsVariableType_ClientConnectionTime,2205,Variable -SessionDiagnosticsVariableType_ClientLastContactTime,2206,Variable -SessionDiagnosticsVariableType_CurrentSubscriptionsCount,2207,Variable -SessionDiagnosticsVariableType_CurrentMonitoredItemsCount,2208,Variable -SessionDiagnosticsVariableType_CurrentPublishRequestsInQueue,2209,Variable -SessionDiagnosticsVariableType_CurrentPublishTimerExpirations,2210,Variable -SessionDiagnosticsVariableType_KeepAliveCount,2211,Variable -SessionDiagnosticsVariableType_CurrentRepublishRequestsInQueue,2212,Variable -SessionDiagnosticsVariableType_MaxRepublishRequestsInQueue,2213,Variable -SessionDiagnosticsVariableType_RepublishCounter,2214,Variable -SessionDiagnosticsVariableType_PublishingCount,2215,Variable -SessionDiagnosticsVariableType_PublishingQueueOverflowCount,2216,Variable -SessionDiagnosticsVariableType_ReadCount,2217,Variable -SessionDiagnosticsVariableType_HistoryReadCount,2218,Variable -SessionDiagnosticsVariableType_WriteCount,2219,Variable -SessionDiagnosticsVariableType_HistoryUpdateCount,2220,Variable -SessionDiagnosticsVariableType_CallCount,2221,Variable -SessionDiagnosticsVariableType_CreateMonitoredItemsCount,2222,Variable -SessionDiagnosticsVariableType_ModifyMonitoredItemsCount,2223,Variable -SessionDiagnosticsVariableType_SetMonitoringModeCount,2224,Variable -SessionDiagnosticsVariableType_SetTriggeringCount,2225,Variable -SessionDiagnosticsVariableType_DeleteMonitoredItemsCount,2226,Variable -SessionDiagnosticsVariableType_CreateSubscriptionCount,2227,Variable -SessionDiagnosticsVariableType_ModifySubscriptionCount,2228,Variable -SessionDiagnosticsVariableType_SetPublishingModeCount,2229,Variable -SessionDiagnosticsVariableType_PublishCount,2230,Variable -SessionDiagnosticsVariableType_RepublishCount,2231,Variable -SessionDiagnosticsVariableType_TransferSubscriptionsCount,2232,Variable -SessionDiagnosticsVariableType_DeleteSubscriptionsCount,2233,Variable -SessionDiagnosticsVariableType_AddNodesCount,2234,Variable -SessionDiagnosticsVariableType_AddReferencesCount,2235,Variable -SessionDiagnosticsVariableType_DeleteNodesCount,2236,Variable -SessionDiagnosticsVariableType_DeleteReferencesCount,2237,Variable -SessionDiagnosticsVariableType_BrowseCount,2238,Variable -SessionDiagnosticsVariableType_BrowseNextCount,2239,Variable -SessionDiagnosticsVariableType_TranslateBrowsePathsToNodeIdsCount,2240,Variable -SessionDiagnosticsVariableType_QueryFirstCount,2241,Variable -SessionDiagnosticsVariableType_QueryNextCount,2242,Variable -SessionSecurityDiagnosticsArrayType,2243,VariableType -SessionSecurityDiagnosticsType,2244,VariableType -SessionSecurityDiagnosticsType_SessionId,2245,Variable -SessionSecurityDiagnosticsType_ClientUserIdOfSession,2246,Variable -SessionSecurityDiagnosticsType_ClientUserIdHistory,2247,Variable -SessionSecurityDiagnosticsType_AuthenticationMechanism,2248,Variable -SessionSecurityDiagnosticsType_Encoding,2249,Variable -SessionSecurityDiagnosticsType_TransportProtocol,2250,Variable -SessionSecurityDiagnosticsType_SecurityMode,2251,Variable -SessionSecurityDiagnosticsType_SecurityPolicyUri,2252,Variable -Server,2253,Object -Server_ServerArray,2254,Variable -Server_NamespaceArray,2255,Variable -Server_ServerStatus,2256,Variable -Server_ServerStatus_StartTime,2257,Variable -Server_ServerStatus_CurrentTime,2258,Variable -Server_ServerStatus_State,2259,Variable -Server_ServerStatus_BuildInfo,2260,Variable -Server_ServerStatus_BuildInfo_ProductName,2261,Variable -Server_ServerStatus_BuildInfo_ProductUri,2262,Variable -Server_ServerStatus_BuildInfo_ManufacturerName,2263,Variable -Server_ServerStatus_BuildInfo_SoftwareVersion,2264,Variable -Server_ServerStatus_BuildInfo_BuildNumber,2265,Variable -Server_ServerStatus_BuildInfo_BuildDate,2266,Variable -Server_ServiceLevel,2267,Variable -Server_ServerCapabilities,2268,Object -Server_ServerCapabilities_ServerProfileArray,2269,Variable -Server_ServerCapabilities_LocaleIdArray,2271,Variable -Server_ServerCapabilities_MinSupportedSampleRate,2272,Variable -Server_ServerDiagnostics,2274,Object -Server_ServerDiagnostics_ServerDiagnosticsSummary,2275,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_ServerViewCount,2276,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSessionCount,2277,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSessionCount,2278,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedSessionCount,2279,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectSessionCount,2280,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionTimeoutCount,2281,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_SessionAbortCount,2282,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_SamplingRateCount,2283,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_PublishingIntervalCount,2284,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_CurrentSubscriptionCount,2285,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_CumulatedSubscriptionCount,2286,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_SecurityRejectedRequestsCount,2287,Variable -Server_ServerDiagnostics_ServerDiagnosticsSummary_RejectedRequestsCount,2288,Variable -Server_ServerDiagnostics_SamplingRateDiagnosticsArray,2289,Variable -Server_ServerDiagnostics_SubscriptionDiagnosticsArray,2290,Variable -Server_ServerDiagnostics_SessionDiagnosticsSummary,2291,Object -Server_ServerDiagnostics_SessionDiagnosticsSummary_SessionDiagnosticsArray,2292,Variable -Server_ServerDiagnostics_SessionDiagnosticsSummary_SessionSecurityDiagnosticsArray,2293,Variable -Server_ServerDiagnostics_EnabledFlag,2294,Variable -Server_VendorServerInfo,2295,Object -Server_ServerRedundancy,2296,Object -Dictionary_XmlSchema,2297,Variable -Dictionary_BinarySchema,2298,Variable -StateMachineType,2299,ObjectType -StateType,2307,ObjectType -StateType_StateNumber,2308,Variable -InitialStateType,2309,ObjectType -TransitionType,2310,ObjectType -TransitionEventType,2311,ObjectType -AuditUpdateStateEventType,2315,ObjectType -HistoricalConfigurationType,2318,ObjectType -HistoricalConfigurationType_Stepped,2323,Variable -HistoricalConfigurationType_Definition,2324,Variable -HistoricalConfigurationType_MaxTimeInterval,2325,Variable -HistoricalConfigurationType_MinTimeInterval,2326,Variable -HistoricalConfigurationType_ExceptionDeviation,2327,Variable -HistoricalConfigurationType_ExceptionDeviationFormat,2328,Variable -HistoricalEventConfigurationType,2329,ObjectType -HistoryServerCapabilitiesType,2330,ObjectType -HistoryServerCapabilitiesType_AccessHistoryDataCapability,2331,Variable -HistoryServerCapabilitiesType_AccessEventsCapability,2332,Variable -HistoryServerCapabilitiesType_MaxReturnValues,2333,Variable -HistoryServerCapabilitiesType_InsertDataCapability,2334,Variable -HistoryServerCapabilitiesType_ReplaceDataCapability,2335,Variable -HistoryServerCapabilitiesType_UpdateDataCapability,2336,Variable -HistoryServerCapabilitiesType_DeleteRawCapability,2337,Variable -HistoryServerCapabilitiesType_DeleteAtTimeCapability,2338,Variable -AggregateFunctionType,2340,ObjectType -AggregateFunction_Interpolative,2341,Object -AggregateFunction_Average,2342,Object -AggregateFunction_TimeAverage,2343,Object -AggregateFunction_Total,2344,Object -AggregateFunction_TotalizeAverage,2345,Object -AggregateFunction_Minimum,2346,Object -AggregateFunction_Maximum,2347,Object -AggregateFunction_MinimumActualTime,2348,Object -AggregateFunction_MaximumActualTime,2349,Object -AggregateFunction_Range,2350,Object -AggregateFunction_AnnotationCount,2351,Object -AggregateFunction_Count,2352,Object -AggregateFunction_DurationInState0,2353,Object -AggregateFunction_DurationInState1,2354,Object -AggregateFunction_NumberOfTransitions,2355,Object -AggregateFunction_Time,2356,Object -AggregateFunction_Start,2357,Object -AggregateFunction_End,2358,Object -AggregateFunction_Delta,2359,Object -AggregateFunction_DurationGood,2360,Object -AggregateFunction_DurationBad,2361,Object -AggregateFunction_PercentGood,2362,Object -AggregateFunction_PercentBad,2363,Object -AggregateFunction_WorstQuality,2364,Object -DataItemType,2365,VariableType -DataItemType_Definition,2366,Variable -DataItemType_ValuePrecision,2367,Variable -AnalogItemType,2368,VariableType -AnalogItemType_EURange,2369,Variable -AnalogItemType_InstrumentRange,2370,Variable -AnalogItemType_EngineeringUnits,2371,Variable -DiscreteItemType,2372,VariableType -TwoStateDiscreteType,2373,VariableType -TwoStateDiscreteType_FalseState,2374,Variable -TwoStateDiscreteType_TrueState,2375,Variable -MultiStateDiscreteType,2376,VariableType -MultiStateDiscreteType_EnumStrings,2377,Variable -ProgramTransitionEventType,2378,ObjectType -ProgramTransitionEventType_IntermediateResult,2379,Variable -ProgramDiagnosticType,2380,VariableType -ProgramDiagnosticType_CreateSessionId,2381,Variable -ProgramDiagnosticType_CreateClientName,2382,Variable -ProgramDiagnosticType_InvocationCreationTime,2383,Variable -ProgramDiagnosticType_LastTransitionTime,2384,Variable -ProgramDiagnosticType_LastMethodCall,2385,Variable -ProgramDiagnosticType_LastMethodSessionId,2386,Variable -ProgramDiagnosticType_LastMethodInputArguments,2387,Variable -ProgramDiagnosticType_LastMethodOutputArguments,2388,Variable -ProgramDiagnosticType_LastMethodCallTime,2389,Variable -ProgramDiagnosticType_LastMethodReturnStatus,2390,Variable -ProgramStateMachineType,2391,ObjectType -ProgramStateMachineType_Creatable,2392,Variable -ProgramStateMachineType_Deletable,2393,Variable -ProgramStateMachineType_AutoDelete,2394,Variable -ProgramStateMachineType_RecycleCount,2395,Variable -ProgramStateMachineType_InstanceCount,2396,Variable -ProgramStateMachineType_MaxInstanceCount,2397,Variable -ProgramStateMachineType_MaxRecycleCount,2398,Variable -ProgramStateMachineType_ProgramDiagnostics,2399,Variable -ProgramStateMachineType_Ready,2400,Object -ProgramStateMachineType_Ready_StateNumber,2401,Variable -ProgramStateMachineType_Running,2402,Object -ProgramStateMachineType_Running_StateNumber,2403,Variable -ProgramStateMachineType_Suspended,2404,Object -ProgramStateMachineType_Suspended_StateNumber,2405,Variable -ProgramStateMachineType_Halted,2406,Object -ProgramStateMachineType_Halted_StateNumber,2407,Variable -ProgramStateMachineType_HaltedToReady,2408,Object -ProgramStateMachineType_HaltedToReady_TransitionNumber,2409,Variable -ProgramStateMachineType_ReadyToRunning,2410,Object -ProgramStateMachineType_ReadyToRunning_TransitionNumber,2411,Variable -ProgramStateMachineType_RunningToHalted,2412,Object -ProgramStateMachineType_RunningToHalted_TransitionNumber,2413,Variable -ProgramStateMachineType_RunningToReady,2414,Object -ProgramStateMachineType_RunningToReady_TransitionNumber,2415,Variable -ProgramStateMachineType_RunningToSuspended,2416,Object -ProgramStateMachineType_RunningToSuspended_TransitionNumber,2417,Variable -ProgramStateMachineType_SuspendedToRunning,2418,Object -ProgramStateMachineType_SuspendedToRunning_TransitionNumber,2419,Variable -ProgramStateMachineType_SuspendedToHalted,2420,Object -ProgramStateMachineType_SuspendedToHalted_TransitionNumber,2421,Variable -ProgramStateMachineType_SuspendedToReady,2422,Object -ProgramStateMachineType_SuspendedToReady_TransitionNumber,2423,Variable -ProgramStateMachineType_ReadyToHalted,2424,Object -ProgramStateMachineType_ReadyToHalted_TransitionNumber,2425,Variable -ProgramStateMachineType_Start,2426,Method -ProgramStateMachineType_Suspend,2427,Method -ProgramStateMachineType_Resume,2428,Method -ProgramStateMachineType_Halt,2429,Method -ProgramStateMachineType_Reset,2430,Method -Dictionary_XmlSchema_Argument,2644,Variable -Dictionary_XmlSchema_StatusResult,2645,Variable -Dictionary_XmlSchema_UserTokenPolicy,2646,Variable -Dictionary_XmlSchema_ApplicationDescription,2647,Variable -Dictionary_XmlSchema_EndpointDescription,2648,Variable -Dictionary_XmlSchema_UserIdentityToken,2649,Variable -Dictionary_XmlSchema_AnonymousIdentityToken,2650,Variable -Dictionary_XmlSchema_UserNameIdentityToken,2651,Variable -Dictionary_XmlSchema_X509IdentityToken,2652,Variable -Dictionary_XmlSchema_IssuedIdentityToken,2653,Variable -Dictionary_XmlSchema_EndpointConfiguration,2654,Variable -Dictionary_XmlSchema_SupportedProfile,2655,Variable -Dictionary_XmlSchema_BuildInfo,2656,Variable -Dictionary_XmlSchema_SoftwareCertificate,2657,Variable -Dictionary_XmlSchema_AddNodesItem,2658,Variable -Dictionary_XmlSchema_AddReferencesItem,2659,Variable -Dictionary_XmlSchema_DeleteNodesItem,2660,Variable -Dictionary_XmlSchema_DeleteReferencesItem,2661,Variable -Dictionary_XmlSchema_ScalarTestType,2662,Variable -Dictionary_XmlSchema_ArrayTestType,2663,Variable -Dictionary_XmlSchema_CompositeTestType,2664,Variable -Dictionary_XmlSchema_RegisteredServer,2665,Variable -Dictionary_XmlSchema_ContentFilterElement,2666,Variable -Dictionary_XmlSchema_ContentFilter,2667,Variable -Dictionary_XmlSchema_FilterOperand,2668,Variable -Dictionary_XmlSchema_ElementOperand,2669,Variable -Dictionary_XmlSchema_LiteralOperand,2670,Variable -Dictionary_XmlSchema_AttributeOperand,2671,Variable -Dictionary_XmlSchema_SimpleAttributeOperand,2672,Variable -Dictionary_XmlSchema_RedundantServerDataType,2673,Variable -Dictionary_XmlSchema_SamplingRateDiagnosticsDataType,2674,Variable -Dictionary_XmlSchema_ServerDiagnosticsSummaryDataType,2675,Variable -Dictionary_XmlSchema_ServerStatusDataType,2676,Variable -Dictionary_XmlSchema_SessionDiagnosticsDataType,2677,Variable -Dictionary_XmlSchema_SessionSecurityDiagnosticsDataType,2678,Variable -Dictionary_XmlSchema_ServiceCounterDataType,2679,Variable -Dictionary_XmlSchema_SubscriptionDiagnosticsDataType,2680,Variable -Dictionary_XmlSchema_ModelChangeStructureDataType,2681,Variable -Dictionary_XmlSchema_Range,2683,Variable -Dictionary_XmlSchema_EUInformation,2684,Variable -Dictionary_XmlSchema_Annotation,2685,Variable -Dictionary_XmlSchema_ProgramDiagnosticDataType,2686,Variable -Dictionary_BinarySchema_Argument,2687,Variable -Dictionary_BinarySchema_StatusResult,2688,Variable -Dictionary_BinarySchema_UserTokenPolicy,2689,Variable -Dictionary_BinarySchema_ApplicationDescription,2690,Variable -Dictionary_BinarySchema_EndpointDescription,2691,Variable -Dictionary_BinarySchema_UserIdentityToken,2692,Variable -Dictionary_BinarySchema_AnonymousIdentityToken,2693,Variable -Dictionary_BinarySchema_UserNameIdentityToken,2694,Variable -Dictionary_BinarySchema_X509IdentityToken,2695,Variable -Dictionary_BinarySchema_IssuedIdentityToken,2696,Variable -Dictionary_BinarySchema_EndpointConfiguration,2697,Variable -Dictionary_BinarySchema_SupportedProfile,2698,Variable -Dictionary_BinarySchema_BuildInfo,2699,Variable -Dictionary_BinarySchema_SoftwareCertificate,2700,Variable -Dictionary_BinarySchema_AddNodesItem,2701,Variable -Dictionary_BinarySchema_AddReferencesItem,2702,Variable -Dictionary_BinarySchema_DeleteNodesItem,2703,Variable -Dictionary_BinarySchema_DeleteReferencesItem,2704,Variable -Dictionary_BinarySchema_ScalarTestType,2705,Variable -Dictionary_BinarySchema_ArrayTestType,2706,Variable -Dictionary_BinarySchema_CompositeTestType,2707,Variable -Dictionary_BinarySchema_RegisteredServer,2708,Variable -Dictionary_BinarySchema_ContentFilterElement,2709,Variable -Dictionary_BinarySchema_ContentFilter,2710,Variable -Dictionary_BinarySchema_FilterOperand,2711,Variable -Dictionary_BinarySchema_ElementOperand,2712,Variable -Dictionary_BinarySchema_LiteralOperand,2713,Variable -Dictionary_BinarySchema_AttributeOperand,2714,Variable -Dictionary_BinarySchema_SimpleAttributeOperand,2715,Variable -Dictionary_BinarySchema_RedundantServerDataType,2716,Variable -Dictionary_BinarySchema_SamplingRateDiagnosticsDataType,2717,Variable -Dictionary_BinarySchema_ServerDiagnosticsSummaryDataType,2718,Variable -Dictionary_BinarySchema_ServerStatusDataType,2719,Variable -Dictionary_BinarySchema_SessionDiagnosticsDataType,2720,Variable -Dictionary_BinarySchema_SessionSecurityDiagnosticsDataType,2721,Variable -Dictionary_BinarySchema_ServiceCounterDataType,2722,Variable -Dictionary_BinarySchema_SubscriptionDiagnosticsDataType,2723,Variable -Dictionary_BinarySchema_ModelChangeStructureDataType,2724,Variable -Dictionary_BinarySchema_Range,2726,Variable -Dictionary_BinarySchema_EUInformation,2727,Variable -Dictionary_BinarySchema_Annotation,2728,Variable -Dictionary_BinarySchema_ProgramDiagnosticDataType,2729,Variable -SessionDiagnosticsVariableType_RegisterNodesCount,2730,Variable -SessionDiagnosticsVariableType_UnregisterNodesCount,2731,Variable -ServerCapabilitiesType_MaxBrowseContinuationPoints,2732,Variable -ServerCapabilitiesType_MaxQueryContinuationPoints,2733,Variable -ServerCapabilitiesType_MaxHistoryContinuationPoints,2734,Variable -Server_ServerCapabilities_MaxBrowseContinuationPoints,2735,Variable -Server_ServerCapabilities_MaxQueryContinuationPoints,2736,Variable -Server_ServerCapabilities_MaxHistoryContinuationPoints,2737,Variable -SemanticChangeEventType,2738,ObjectType -SemanticChangeEventType_Changes,2739,Variable -Dictionary_XmlSchema_SemanticChangeStructureDataType,2740,Variable -Dictionary_BinarySchema_SemanticChangeStructureDataType,2741,Variable -ServerType_Auditing,2742,Variable -ServerDiagnosticsType_SessionsDiagnosticsSummary,2744,Object -AuditChannelEventType_SecureChannelId,2745,Variable -AuditOpenSecureChannelEventType_ClientCertificateThumbprint,2746,Variable -AuditCreateSessionEventType_ClientCertificateThumbprint,2747,Variable -AuditUrlMismatchEventType,2748,ObjectType -AuditUrlMismatchEventType_EndpointUrl,2749,Variable -AuditWriteUpdateEventType_AttributeId,2750,Variable -AuditHistoryUpdateEventType_ParameterDataTypeId,2751,Variable -ServerStatusType_SecondsTillShutdown,2752,Variable -ServerStatusType_ShutdownReason,2753,Variable -ServerCapabilitiesType_AggregateFunctions,2754,Object -StateVariableType,2755,VariableType -StateVariableType_Id,2756,Variable -StateVariableType_Name,2757,Variable -StateVariableType_Number,2758,Variable -StateVariableType_EffectiveDisplayName,2759,Variable -FiniteStateVariableType,2760,VariableType -FiniteStateVariableType_Id,2761,Variable -TransitionVariableType,2762,VariableType -TransitionVariableType_Id,2763,Variable -TransitionVariableType_Name,2764,Variable -TransitionVariableType_Number,2765,Variable -TransitionVariableType_TransitionTime,2766,Variable -FiniteTransitionVariableType,2767,VariableType -FiniteTransitionVariableType_Id,2768,Variable -StateMachineType_CurrentState,2769,Variable -StateMachineType_LastTransition,2770,Variable -FiniteStateMachineType,2771,ObjectType -FiniteStateMachineType_CurrentState,2772,Variable -FiniteStateMachineType_LastTransition,2773,Variable -TransitionEventType_Transition,2774,Variable -TransitionEventType_FromState,2775,Variable -TransitionEventType_ToState,2776,Variable -AuditUpdateStateEventType_OldStateId,2777,Variable -AuditUpdateStateEventType_NewStateId,2778,Variable -BaseConditionType,2779,ObjectType -BaseConditionType_Retain,2780,Variable -BaseConditionType_ConditionRefresh,2781,Method -ConditionType,2782,ObjectType -ConditionType_State,2783,Object -ConditionType_GroupingId,2784,Variable -ConditionType_AddCommentByEventIds,2785,Method -ConditionGroupType,2786,ObjectType -RefreshStartEventType,2787,ObjectType -RefreshEndEventType,2788,ObjectType -RefreshRequiredEventType,2789,ObjectType -AuditConditionEventType,2790,ObjectType -BaseConditionStateMachineType,2791,ObjectType -ConditionStateMachineType,2792,ObjectType -ConditionStateMachineType_Enabled,2793,Object -ConditionStateMachineType_Disabled,2794,Object -ConditionStateMachineType_ToEnabled,2795,Object -ConditionStateMachineType_ToDisabled,2796,Object -ConditionStateMachineType_Enable,2797,Method -ConditionStateMachineType_Disable,2798,Method -ConditionStateMachineType_Status,2799,Object -ConditionStateMachineType_Severity,2800,Object -ConditionStateMachineType_Comment,2801,Object -ConditionStateMachineType_CommentPrevious,2802,Object -AuditConditionEnableEventType,2803,ObjectType -StatusStateMachineType,2804,ObjectType -StatusStateMachineType_Status,2805,Variable -StatusStateMachineType_Change,2806,Object -StatusStateMachineType_ToChange,2807,Object -SeverityStateMachineType,2808,ObjectType -SeverityStateMachineType_LastSeverity,2809,Variable -SeverityStateMachineType_Change,2810,Object -SeverityStateMachineType_SeverityChange,2811,Object -CommentStateMachineType,2812,ObjectType -CommentStateMachineType_Comment,2813,Variable -CommentStateMachineType_ClientUserId,2814,Variable -CommentStateMachineType_LastComment,2815,Object -CommentStateMachineType_CommentAdded,2816,Object -CommentStateMachineType_ToCommentAdded,2817,Object -CommentStateMachineType_ToLastComment,2818,Object -CommentStateMachineType_AddComment,2819,Method -CommentPreviousStateMachineType,2820,ObjectType -CommentPreviousStateMachineType_EventId,2821,Variable -CommentPreviousStateMachineType_Comment,2822,Variable -CommentPreviousStateMachineType_ClientUserId,2823,Variable -CommentPreviousStateMachineType_LastComment,2824,Object -CommentPreviousStateMachineType_CommentAdded,2825,Object -CommentPreviousStateMachineType_ToCommentAdded,2826,Object -CommentPreviousStateMachineType_ToLastComment,2827,Object -CommentPreviousStateMachineType_AddCommentByEventIds,2828,Method -AuditConditionCommentEventType,2829,ObjectType -DialogConditionType,2830,ObjectType -DialogConditionType_Prompt,2831,Variable -OkDialogConditionType,2832,ObjectType -OkDialogConditionType_State,2833,Object -OkDialogStateMachineType,2834,ObjectType -OkDialogStateMachineType_Dialog,2835,Object -OkDialogSubStateMachineType,2836,ObjectType -OkDialogSubStateMachineType_Inactive,2837,Object -OkDialogSubStateMachineType_Active,2838,Object -OkDialogSubStateMachineType_Accepting,2839,Object -OkDialogSubStateMachineType_ToAccepting,2840,Object -OkDialogSubStateMachineType_ToActive,2841,Object -OkDialogSubStateMachineType_ToInactive,2842,Object -OkDialogSubStateMachineType_Ok,2843,Method -AuditConditionDialogEventType,2844,ObjectType -OkCancelDialogConditionType,2845,ObjectType -OkCancelDialogConditionType_State,2846,Object -OkCancelDialogStateMachineType,2847,ObjectType -OkCancelDialogStateMachineType_Dialog,2848,Object -OkCancelDialogSubStateMachineType,2849,ObjectType -OkCancelDialogSubStateMachineType_Inactive,2850,Object -OkCancelDialogSubStateMachineType_Active,2851,Object -OkCancelDialogSubStateMachineType_Accepting,2852,Object -OkCancelDialogSubStateMachineType_Cancelling,2853,Object -OkCancelDialogSubStateMachineType_ToActive,2854,Object -OkCancelDialogSubStateMachineType_ToAccepting,2855,Object -OkCancelDialogSubStateMachineType_AcceptingToInactive,2856,Object -OkCancelDialogSubStateMachineType_ToCancelling,2857,Object -OkCancelDialogSubStateMachineType_CancellingToInactive,2858,Object -OkCancelDialogSubStateMachineType_Ok,2859,Method -OkCancelDialogSubStateMachineType_Cancel,2860,Method -YesNoCancelDialogConditionType,2861,ObjectType -YesNoCancelDialogConditionType_State,2862,Object -YesNoCancelDialogStateMachineType,2863,ObjectType -YesNoCancelDialogStateMachineType_Dialog,2864,Object -YesNoCancelDialogSubStateMachineType,2865,ObjectType -YesNoCancelDialogSubStateMachineType_Inactive,2866,Object -YesNoCancelDialogSubStateMachineType_Active,2867,Object -YesNoCancelDialogSubStateMachineType_Accepting,2868,Object -YesNoCancelDialogSubStateMachineType_Cancelling,2869,Object -YesNoCancelDialogSubStateMachineType_Rejecting,2870,Object -YesNoCancelDialogSubStateMachineType_ToActive,2871,Object -YesNoCancelDialogSubStateMachineType_ToAccepting,2872,Object -YesNoCancelDialogSubStateMachineType_AcceptingToInactive,2873,Object -YesNoCancelDialogSubStateMachineType_ToCancelling,2874,Object -YesNoCancelDialogSubStateMachineType_CancellingToInactive,2875,Object -YesNoCancelDialogSubStateMachineType_ToRejecting,2876,Object -YesNoCancelDialogSubStateMachineType_RejectingToInactive,2877,Object -YesNoCancelDialogSubStateMachineType_Yes,2878,Method -YesNoCancelDialogSubStateMachineType_No,2879,Method -YesNoCancelDialogSubStateMachineType_Cancel,2880,Method -AcknowledgeableConditionType,2881,ObjectType -AcknowledgeableConditionType_State,2882,Object -AcknowledgeableConditionType_AckPrevious,2883,Variable -AcknowledgeableConditionType_AcknowledgeByEventIds,2884,Method -AcknowledgeableConditionType_ConfirmByEventIds,2885,Method -AcknowledgeableConditionStateMachineType,2886,ObjectType -AcknowledgeableConditionStateMachineType_Acknowledged,2887,Object -AcknowledgeableConditionStateMachineType_AckPreviousRequired,2888,Object -AcknowledgeableConditionStateMachineType_Confirm,2889,Object -AcknowledgeableConditionStateMachineType_ConfirmPrevious,2890,Object -AuditAcknowledgeEventType,2891,ObjectType -AcknowledgeStateMachineType,2892,ObjectType -AcknowledgeStateMachineType_Unacknowledged,2893,Object -AcknowledgeStateMachineType_Acknowledged,2894,Object -AcknowledgeStateMachineType_Acknowledging,2895,Object -AcknowledgeStateMachineType_ToAcknowledging,2896,Object -AcknowledgeStateMachineType_ToAcknowledged,2897,Object -AcknowledgeStateMachineType_ToUnacknowledged,2898,Object -AcknowledgeStateMachineType_Acknowledge,2899,Method -ConfirmedStateMachineType,2900,ObjectType -ConfirmedStateMachineType_Unconfirmed,2901,Object -ConfirmedStateMachineType_Confirmed,2902,Object -ConfirmedStateMachineType_Confirming,2903,Object -ConfirmedStateMachineType_ToConfirming,2904,Object -ConfirmedStateMachineType_ToConfirmed,2905,Object -ConfirmedStateMachineType_ConfirmingToUnconfirmed,2906,Object -ConfirmedStateMachineType_ConfirmedToUnconfirmed,2907,Object -ConfirmedStateMachineType_Confirm,2908,Method -AckPreviousStateMachineType,2909,ObjectType -AckPreviousStateMachineType_Active,2911,Object -AckPreviousStateMachineType_Confirming,2912,Object -AckPreviousStateMachineType_ToActive,2913,Object -AlarmConditionType,2915,ObjectType -AlarmConditionType_State,2916,Object -AlarmConditionType_SuppressedOrShelved,2917,Variable -AlarmConditionType_MaxTimeShelved,2918,Variable -AlarmConditionStateMachineType,2919,ObjectType -AlarmConditionStateMachineType_AlarmActive,2920,Object -AlarmConditionStateMachineType_AlarmShelved,2921,Object -AlarmConditionStateMachineType_AlarmSuppressed,2922,Object -AlarmStateMachineType,2923,ObjectType -AlarmStateMachineType_Inactive,2924,Object -AlarmStateMachineType_Active,2925,Object -AlarmStateMachineType_ToActive,2926,Object -AlarmStateMachineType_ToInactive,2927,Object -ShelvedAuditEventType,2928,ObjectType -ShelvedStateMachineType,2929,ObjectType -ShelvedStateMachineType_Unshelved,2930,Object -ShelvedStateMachineType_ManualShelved,2931,Object -ShelvedStateMachineType_TimedShelved,2932,Object -ShelvedStateMachineType_OneShotShelved,2933,Object -ShelvedStateMachineType_UnshelvedToManualShelved,2934,Object -ShelvedStateMachineType_UnshelvedToTimedShelved,2935,Object -ShelvedStateMachineType_UnshelvedToOneShotShelved,2936,Object -ShelvedStateMachineType_ManualShelvedToUnshelved,2937,Object -ShelvedStateMachineType_ManualShelvedToTimedShelved,2938,Object -ShelvedStateMachineType_ManualShelvedToOneShotShelved,2939,Object -ShelvedStateMachineType_TimedShelvedToUnshelved,2940,Object -ShelvedStateMachineType_TimedShelvedToManualShelved,2941,Object -ShelvedStateMachineType_TimedShelvedToOneShotShelved,2942,Object -ShelvedStateMachineType_OneShotShelvedToUnshelved,2943,Object -ShelvedStateMachineType_OneShotShelvedToManualShelved,2944,Object -ShelvedStateMachineType_OneShotShelvedToTimedShelved,2945,Object -ShelvedStateMachineType_ManualShelve,2946,Method -ShelvedStateMachineType_Unshelve,2947,Method -ShelvedStateMachineType_OneShotShelve,2948,Method -ShelvedStateMachineType_TimedShelve,2949,Method -SuppressedStateMachineType,2950,ObjectType -SuppressedStateMachineType_Unsuppressed,2951,Object -SuppressedStateMachineType_Suppressed,2952,Object -SuppressedStateMachineType_ToUnsuppressed,2953,Object -SuppressedStateMachineType_ToSuppressed,2954,Object -ProcessAlarmType,2955,ObjectType -LevelAlarmType,2956,ObjectType -SingleLevelAlarmType,2957,ObjectType -SingleLevelAlarmType_Limit,2958,Variable -MultiLevelAlarmType,2959,ObjectType -MultiLevelAlarmType_State,2960,Object -MultiLevelAlarmType_HighHighLimit,2961,Variable -MultiLevelAlarmType_HighLimit,2962,Variable -MultiLevelAlarmType_LowLimit,2963,Variable -MultiLevelAlarmType_LowLowLimit,2964,Variable -MultiLevelAlarmConditionStateMachineType,2965,ObjectType -MultiLevelAlarmConditionStateMachineType_AlarmActive,2966,Object -MultiLevelAlarmStateMachineType,2967,ObjectType -MultiLevelAlarmStateMachineType_ActiveSubState,2968,Object -MultiLevelAlarmActiveSubStateMachineType,2969,ObjectType -MultiLevelAlarmActiveSubStateMachineType_HighHigh,2970,Object -MultiLevelAlarmActiveSubStateMachineType_High,2971,Object -MultiLevelAlarmActiveSubStateMachineType_Low,2972,Object -MultiLevelAlarmActiveSubStateMachineType_LowLow,2973,Object -MultiLevelAlarmActiveSubStateMachineType_HighToHighHigh,2974,Object -MultiLevelAlarmActiveSubStateMachineType_HighHighToHigh,2975,Object -MultiLevelAlarmActiveSubStateMachineType_LowToLowLow,2976,Object -MultiLevelAlarmActiveSubStateMachineType_LowLowToLow,2977,Object -AlarmLimitType,2978,VariableType -BaseConditionType_ConditionRefresh_InputArguments,2979,Variable -ConditionType_AddCommentByEventIds_InputArguments,2980,Variable -ConditionType_AddCommentByEventIds_OutputArguments,2981,Variable -CommentStateMachineType_AddComment_InputArguments,2982,Variable -CommentPreviousStateMachineType_AddCommentByEventIds_InputArguments,2983,Variable -CommentPreviousStateMachineType_AddCommentByEventIds_OutputArguments,2984,Variable -AcknowledgeableConditionType_AcknowledgeByEventIds_InputArguments,2985,Variable -AcknowledgeableConditionType_AcknowledgeByEventIds_OutputArguments,2986,Variable -AcknowledgeableConditionType_ConfirmByEventIds_InputArguments,2987,Variable -AcknowledgeableConditionType_ConfirmByEventIds_OutputArguments,2988,Variable -AcknowledgeStateMachineType_Acknowledge_InputArguments,2989,Variable -ConfirmedStateMachineType_Confirm_InputArguments,2990,Variable -ShelvedStateMachineType_TimedShelve_InputArguments,2991,Variable -Server_ServerStatus_SecondsTillShutdown,2992,Variable -Server_ServerStatus_ShutdownReason,2993,Variable -Server_Auditing,2994,Variable -Server_ServerCapabilities_SupportsAuditing,2995,Variable -Server_ServerCapabilities_ModellingRules,2996,Object -Server_ServerCapabilities_AggregateFunctions,2997,Object -SubscriptionDiagnosticsType_EventNotificationsCount,2998,Variable -AuditHistoryEventUpdateEventType,2999,ObjectType -AuditHistoryEventUpdateEventType_Filter,3003,Variable -AuditHistoryValueUpdateEventType,3006,ObjectType -AuditHistoryDeleteEventType,3012,ObjectType -AuditHistoryRawModifyDeleteEventType,3014,ObjectType -AuditHistoryRawModifyDeleteEventType_IsDeleteModified,3015,Variable -AuditHistoryRawModifyDeleteEventType_StartTime,3016,Variable -AuditHistoryRawModifyDeleteEventType_EndTime,3017,Variable -AuditHistoryAtTimeDeleteEventType,3019,ObjectType -AuditHistoryAtTimeDeleteEventType_ReqTimes,3020,Variable -AuditHistoryAtTimeDeleteEventType_OldValues,3021,Variable -AuditHistoryEventDeleteEventType,3022,ObjectType -AuditHistoryEventDeleteEventType_EventIds,3023,Variable -AuditHistoryEventDeleteEventType_OldValues,3024,Variable -AuditHistoryEventUpdateEventType_UpdatedNode,3025,Variable -AuditHistoryValueUpdateEventType_UpdatedNode,3026,Variable -AuditHistoryDeleteEventType_UpdatedNode,3027,Variable -AuditHistoryEventUpdateEventType_PerformInsertReplace,3028,Variable -AuditHistoryEventUpdateEventType_NewValues,3029,Variable -AuditHistoryEventUpdateEventType_OldValues,3030,Variable -AuditHistoryValueUpdateEventType_PerformInsertReplace,3031,Variable -AuditHistoryValueUpdateEventType_NewValues,3032,Variable -AuditHistoryValueUpdateEventType_OldValues,3033,Variable -AuditHistoryRawModifyDeleteEventType_OldValues,3034,Variable -EventQueueOverflowEventType,3035,ObjectType -AckPreviousStateMachineType_Inactive,3036,Object -AckPreviousStateMachineType_ToInactive,3037,Object -Dictionary_XmlSchema_SignedSoftwareCertificate,3038,Variable -Dictionary_BinarySchema_SignedSoftwareCertificate,3039,Variable -Dictionary_XmlSchema_EventFilter,3040,Variable -Dictionary_BinarySchema_EventFilter,3041,Variable -Dictionary_XmlSchema_MonitoringFilter,3042,Variable -Dictionary_BinarySchema_MonitoringFilter,3043,Variable -Dictionary_XmlSchema_HistoryEvent,3044,Variable -Dictionary_XmlSchema_HistoryEventFieldList,3045,Variable -Dictionary_BinarySchema_HistoryEvent,3046,Variable -Dictionary_BinarySchema_HistoryEventFieldList,3047,Variable -EventTypesFolder,3048,Object -ServerCapabilitiesType_SoftwareCertificates,3049,Variable -SessionDiagnosticsVariableType_MaxResponseMessageSize,3050,Variable -BuildInfoType,3051,VariableType -BuildInfoType_ProductUri,3052,Variable -BuildInfoType_ManufacturerName,3053,Variable -BuildInfoType_ProductName,3054,Variable -BuildInfoType_SoftwareVersion,3055,Variable -BuildInfoType_BuildNumber,3056,Variable -BuildInfoType_BuildDate,3057,Variable -SessionSecurityDiagnosticsType_ClientCertificate,3058,Variable -HistoricalConfigurationType_AggregateConfiguration,3059,Variable -Dictionary_XmlSchema_AggregateConfiguration,3060,Variable -Dictionary_BinarySchema_AggregateConfiguration,3061,Variable diff --git a/ModelCompiler/Design/UA Defined Types.xml b/ModelCompiler/Design/UA Defined Types.xml index 283ac079..325a5955 100644 --- a/ModelCompiler/Design/UA Defined Types.xml +++ b/ModelCompiler/Design/UA Defined Types.xml @@ -1,5 +1,5 @@  - + http://opcfoundation.org/UA/ diff --git a/ModelCompiler/ModelDesignerValidator.cs b/ModelCompiler/ModelDesignerValidator.cs index 0bd5dd47..4dd1559b 100644 --- a/ModelCompiler/ModelDesignerValidator.cs +++ b/ModelCompiler/ModelDesignerValidator.cs @@ -52,6 +52,7 @@ public ModelCompilerValidator(uint startId) { m_context = ServiceMessageContext.GlobalContext; m_startId = startId; + EmbeddedResourcePath = "Opc.Ua.ModelCompiler.Design"; } #endregion @@ -72,6 +73,11 @@ public IEnumerable Nodes get { return m_nodes.Values; } } + /// + /// The location of the embedded resources. + /// + public string EmbeddedResourcePath { get; set; } + /// /// Finds the data type with the specified name. /// @@ -105,7 +111,7 @@ public void LoadBuiltInTypes() // validate node in target dictionary. ValidateDictionary(m_dictionary); - Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("Opc.Ua.ModelCompiler.Design.StandardTypes.csv"); + Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream($"{EmbeddedResourcePath}.StandardTypes.csv"); using (stream) { @@ -282,7 +288,16 @@ private void LoadIncludedDesignFile(ModelDesign parent, FileInfo targetFile, str if (!File.Exists(designFilePath)) { - designFilePath = Utils.Format(".\\Design\\{0}", designFileName); + designFilePath = $".\\Design\\"; + + int index = EmbeddedResourcePath.IndexOf(".Design"); + + if (index > 0) + { + designFilePath = $".\\{EmbeddedResourcePath.Substring(index + 1)}\\"; + } + + designFilePath += $"{designFileName}"; Console.WriteLine("Trying file: " + designFilePath); if (!File.Exists(designFilePath)) @@ -421,12 +436,21 @@ private void LoadIncludedDesignFile(ModelDesign parent, FileInfo targetFile, str if (!File.Exists(identifiersFilePath)) { - identifiersFilePath = Utils.Format(".\\Design\\{0}", identifiersFileName); + identifiersFilePath = $".\\Design\\"; + + int index = EmbeddedResourcePath.IndexOf(".Design"); + + if (index > 0) + { + identifiersFilePath = $".\\{EmbeddedResourcePath.Substring(index+1)}\\"; + } + + identifiersFilePath += $"{identifiersFileName}"; Console.WriteLine("Trying file: " + identifiersFilePath); if (!File.Exists(identifiersFilePath)) { - identifiersFilePath = Utils.Format("Opc.Ua.ModelCompiler.Design.{0}", identifiersFileName); + identifiersFilePath = $"{EmbeddedResourcePath}.{identifiersFileName}"; Console.WriteLine("Trying resource: " + identifiersFilePath); isResource = true; } @@ -593,18 +617,18 @@ private void ImportFields(DataTypeDesign design, Opc.Ua.CodeGenerator.FieldType[ } } - private ModelDesign ImportTypeDictionary(string filePath) + private ModelDesign ImportTypeDictionary(string filePath, string resourcePath) { using (Stream stream = File.OpenRead(filePath)) { - return ImportTypeDictionary(stream); + return ImportTypeDictionary(stream, resourcePath); } } - private ModelDesign ImportTypeDictionary(Stream stream) + private ModelDesign ImportTypeDictionary(Stream stream, string resourcePath) { Dictionary knownFiles = new Dictionary(); - Opc.Ua.CodeGenerator.TypeDictionaryValidator validator = new Opc.Ua.CodeGenerator.TypeDictionaryValidator(knownFiles); + Opc.Ua.CodeGenerator.TypeDictionaryValidator validator = new Opc.Ua.CodeGenerator.TypeDictionaryValidator(knownFiles, resourcePath); validator.Validate(stream); string namespaceUri = validator.Dictionary.TargetNamespace; @@ -775,7 +799,7 @@ private ModelDesign LoadBuiltInModel() // load the design files. ModelDesign builtin = (ModelDesign)LoadResource( typeof(ModelDesign), - "Opc.Ua.ModelCompiler.Design.BuiltInTypes.xml", + $"{EmbeddedResourcePath}.BuiltInTypes.xml", Assembly.GetExecutingAssembly()); nodes.AddRange(builtin.Items); @@ -784,11 +808,11 @@ private ModelDesign LoadBuiltInModel() ModelDesign datatypes = null; - Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("Opc.Ua.ModelCompiler.Design.UA Core Services.xml"); + Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream($"{EmbeddedResourcePath}.UA Core Services.xml"); using (stream) { - datatypes = ImportTypeDictionary(stream); + datatypes = ImportTypeDictionary(stream, EmbeddedResourcePath); } if (datatypes != null) @@ -798,7 +822,7 @@ private ModelDesign LoadBuiltInModel() ModelDesign standard = (ModelDesign)LoadResource( typeof(ModelDesign), - "Opc.Ua.ModelCompiler.Design.StandardTypes.xml", + $"{EmbeddedResourcePath}.StandardTypes.xml", Assembly.GetExecutingAssembly()); nodes.AddRange(standard.Items); @@ -836,9 +860,18 @@ private void ValidateDictionary(ModelDesign dictionary) if (hasDataTypesDefined) { - AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Binary, nodes); - AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Xml, nodes); - AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Json, nodes); + + if (!EmbeddedResourcePath.EndsWith("v103")) + { + AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Binary, nodes); + AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Xml, nodes); + AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Json, nodes); + } + else + { + AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Xml, nodes); + AddDataTypeDictionary(dictionary, dictionary.TargetNamespaceInfo, EncodingType.Binary, nodes); + } foreach (NodeDesign node in dictionary.Items) { @@ -945,7 +978,7 @@ public void Validate2(IList designFilePaths, string identifierFilePath, if (inputPath.EndsWith("StandardTypes.xml")) { Log("Loading StandardTypes..."); - dictionary = (ModelDesign)LoadResource(typeof(ModelDesign), "Opc.Ua.ModelCompiler.Design.BuiltInTypes.xml", Assembly.GetExecutingAssembly()); + dictionary = (ModelDesign)LoadResource(typeof(ModelDesign), $"{EmbeddedResourcePath}.BuiltInTypes.xml", Assembly.GetExecutingAssembly()); } for (int ii = 0; ii < designFilePaths.Count; ii++) @@ -962,7 +995,7 @@ public void Validate2(IList designFilePaths, string identifierFilePath, { try { - component = ImportTypeDictionary(designFilePaths[ii]); + component = ImportTypeDictionary(designFilePaths[ii], EmbeddedResourcePath); } catch (Exception e2) { @@ -1554,13 +1587,16 @@ private void AddEnumStrings(DataTypeDesign dataType) namespaceUri, descriptions); - AddProperty( - dictionary, - new XmlQualifiedName("Deprecated", DefaultNamespace), - new XmlQualifiedName("Boolean", DefaultNamespace), - ValueRank.Scalar, - true, - descriptions); + if (!EmbeddedResourcePath.EndsWith("v103")) + { + AddProperty( + dictionary, + new XmlQualifiedName("Deprecated", DefaultNamespace), + new XmlQualifiedName("Boolean", DefaultNamespace), + ValueRank.Scalar, + true, + descriptions); + } } foreach (NodeDesign node in nodes.Items) @@ -3310,8 +3346,17 @@ private void ValidateType(TypeDesign type) { EncodingDesign xmlEncoding = CreateEncoding(dataType, new XmlQualifiedName("DefaultXml", DefaultNamespace)); EncodingDesign binaryEncoding = CreateEncoding(dataType, new XmlQualifiedName("DefaultBinary", DefaultNamespace)); - EncodingDesign jsonEncoding = CreateEncoding(dataType, new XmlQualifiedName("DefaultJson", DefaultNamespace)); - dataType.Encodings = new EncodingDesign[] { xmlEncoding, binaryEncoding, jsonEncoding }; + + if (!EmbeddedResourcePath.EndsWith("v103")) + { + EncodingDesign jsonEncoding = CreateEncoding(dataType, new XmlQualifiedName("DefaultJson", DefaultNamespace)); + dataType.Encodings = new EncodingDesign[] { xmlEncoding, binaryEncoding, jsonEncoding }; + } + else + { + dataType.Encodings = new EncodingDesign[] { xmlEncoding, binaryEncoding }; + } + dataType.HasEncodings = true; } diff --git a/ModelCompiler/ModelGenerator2.cs b/ModelCompiler/ModelGenerator2.cs index 9ab5520c..510e512a 100644 --- a/ModelCompiler/ModelGenerator2.cs +++ b/ModelCompiler/ModelGenerator2.cs @@ -83,9 +83,15 @@ public bool IncludeDisplayNames /// /// Generates the source code files. /// - public virtual void ValidateAndUpdateIds(IList designFilePaths, string identifierFilePath, uint startId) + public virtual void ValidateAndUpdateIds(IList designFilePaths, string identifierFilePath, uint startId, string specificationVersion) { m_validator = new ModelCompilerValidator(startId); + + if (!String.IsNullOrEmpty(specificationVersion)) + { + m_validator.EmbeddedResourcePath = $"{m_validator.EmbeddedResourcePath}.{specificationVersion}"; + } + m_validator.Validate2(designFilePaths, identifierFilePath, false); m_model = m_validator.Dictionary; } @@ -270,7 +276,7 @@ private void WriteTemplate_XmlExport(string filePath) PublicationDateSpecified = m_model.TargetPublicationDateSpecified }, (m_model.TargetPublicationDate != DateTime.UtcNow)? m_model.TargetPublicationDate:DateTime.MinValue, - false); + true); } } @@ -328,23 +334,11 @@ private void WriteTemplate_XmlExport(string filePath) ostrm, model, (m_model.TargetPublicationDate != DateTime.MinValue)? m_model.TargetPublicationDate:DateTime.MinValue, - false); - - var nodeSetFilePath = String.Format(@"{0}\{1}.NodeSet2_WithNames.xml", filePath, m_model.TargetNamespaceInfo.Prefix); - - using (Stream ostrm2 = File.Open(nodeSetFilePath, FileMode.Create)) - { - collection.SaveAsNodeSet2( - context, - ostrm2, - model, - (m_model.TargetPublicationDate != DateTime.MinValue) ? m_model.TargetPublicationDate : DateTime.MinValue, - true); - } + true); if (m_model.TargetNamespace == Namespaces.OpcUa) { - nodeSetFilePath = String.Format(@"{0}\{1}.NodeSet2.Services.xml", filePath, m_model.TargetNamespaceInfo.Prefix); + var nodeSetFilePath = String.Format(@"{0}\{1}.NodeSet2.Services.xml", filePath, m_model.TargetNamespaceInfo.Prefix); using (Stream ostrm2 = File.Open(nodeSetFilePath, FileMode.Create)) { @@ -353,7 +347,7 @@ private void WriteTemplate_XmlExport(string filePath) ostrm2, model, (m_model.TargetPublicationDate != DateTime.MinValue) ? m_model.TargetPublicationDate : DateTime.MinValue, - false); + true); } } } diff --git a/ModelCompiler/Program.cs b/ModelCompiler/Program.cs index 8d98403c..f1c77fa6 100644 --- a/ModelCompiler/Program.cs +++ b/ModelCompiler/Program.cs @@ -192,6 +192,7 @@ private static bool ProcessCommandLine2(List tokens) bool updateHeaders = false; string inputDirectory = "."; string filePattern = "*.xml"; + string specificationVersion = ""; var licenseType = HeaderUpdateTool.LicenseType.MITXML; bool silent = false; @@ -311,6 +312,17 @@ private static bool ProcessCommandLine2(List tokens) continue; } + if (tokens[ii] == "-version") + { + if (ii >= tokens.Count - 1) + { + throw new ArgumentException("Incorrect number of parameters specified with the -version option."); + } + + specificationVersion = tokens[++ii]; + continue; + } + if (tokens[ii] == "-ansic") { if (ii >= tokens.Count - 1) @@ -393,7 +405,7 @@ private static bool ProcessCommandLine2(List tokens) File.Create(identifierFile).Close(); } - generator.ValidateAndUpdateIds(designFiles, identifierFile, startId); + generator.ValidateAndUpdateIds(designFiles, identifierFile, startId, specificationVersion); if (!String.IsNullOrEmpty(stackRootDir)) { @@ -402,7 +414,7 @@ private static bool ProcessCommandLine2(List tokens) throw new ArgumentException("The directory does not exist: " + stackRootDir); } - StackGenerator.GenerateDotNet(stackRootDir); + StackGenerator.GenerateDotNet(stackRootDir, specificationVersion); } if (!String.IsNullOrEmpty(ansicRootDir)) @@ -412,7 +424,7 @@ private static bool ProcessCommandLine2(List tokens) throw new ArgumentException("The directory does not exist: " + ansicRootDir); } - StackGenerator.GenerateAnsiC(ansicRootDir); + StackGenerator.GenerateAnsiC(ansicRootDir, specificationVersion); generator.GenerateIdentifiersAndNamesForAnsiC(ansicRootDir, excludeCategories); } diff --git a/ModelCompiler/StackGenerator.cs b/ModelCompiler/StackGenerator.cs index 9ca5d017..c5b4c61b 100644 --- a/ModelCompiler/StackGenerator.cs +++ b/ModelCompiler/StackGenerator.cs @@ -55,15 +55,22 @@ public Files() } } - static void ProcessDictionary(string name, string input, string output, Files files) + static void ProcessDictionary(string name, string input, string output, Files files, string specificationVersion) { - TypeDictionaryValidator validator = new TypeDictionaryValidator(); + var resourcePath = "Opc.Ua.ModelCompiler.Design"; + + if (!String.IsNullOrEmpty(specificationVersion)) + { + resourcePath = $"Opc.Ua.ModelCompiler.Design.{specificationVersion}"; + } + + TypeDictionaryValidator validator = new TypeDictionaryValidator(resourcePath); validator.Validate(input); string basePath = String.Format(@"{0}\{1}", output, name); string fileName = String.Format("Opc.Ua{0}", name); - XmlSchemaGenerator generator1 = new XmlSchemaGenerator(input, output, files.TypeDictionaries); + XmlSchemaGenerator generator1 = new XmlSchemaGenerator(input, output, files.TypeDictionaries, resourcePath); generator1.TypesNamespace = "http://opcfoundation.org/UA/2008/02/Types.xsd"; generator1.ServicesNamespace = "http://opcfoundation.org/UA/2008/02/Services.wsdl"; @@ -78,7 +85,7 @@ static void ProcessDictionary(string name, string input, string output, Files fi System.IO.File.Delete(filePath); fileName = "Opc.Ua.Types"; - BinarySchemaGenerator generator2 = new BinarySchemaGenerator(input, output, files.TypeDictionaries); + BinarySchemaGenerator generator2 = new BinarySchemaGenerator(input, output, files.TypeDictionaries, resourcePath); generator2.Generate(fileName, true, "http://opcfoundation.org/UA/"); filePath = String.Format(@"{0}\{1}.bsd", output, fileName); @@ -88,114 +95,137 @@ static void ProcessDictionary(string name, string input, string output, Files fi System.IO.File.Delete(filePath); } - static void GenerateAnsiC(Files files, string designerDir, string outputDir) + static void GenerateAnsiC(Files files, string designerDir, string outputDir, string specificationVersion) { + var resourcePath = "Opc.Ua.ModelCompiler.Design"; + + if (!String.IsNullOrEmpty(specificationVersion)) + { + resourcePath = $"Opc.Ua.ModelCompiler.Design.{specificationVersion}"; + } + ConstantsGenerator generator3 = new ConstantsGenerator( Language.AnsiC, - designerDir + @"\Design\UA Attributes.xml", + $"{designerDir}UA Attributes.xml", outputDir, - files.NodeDictionaries); + files.NodeDictionaries, + resourcePath); generator3.Generate( "OpcUa", "Attributes", - designerDir + @"\Design\UA Attributes.csv", + $"{designerDir}UA Attributes.csv", false); ConstantsGenerator generator4 = new ConstantsGenerator( Language.AnsiC, - designerDir + @"\Design\UA Status Codes.xml", + $"{designerDir}UA Status Codes.xml", outputDir, - files.NodeDictionaries); + files.NodeDictionaries, + resourcePath); generator4.Generate( "OpcUa", "StatusCodes", - designerDir + @"\Design\UA Status Codes.csv", + $"{designerDir}UA Status Codes.csv", false); AnsiCGenerator generator7 = new AnsiCGenerator( - designerDir + @"\Design\UA Core Services.xml", + $"{designerDir}UA Core Services.xml", outputDir, - files.TypeDictionaries); + files.TypeDictionaries, + resourcePath); generator7.Generate("OpcUa", "Core", true); } - static void GenerateDotNet(Files files, string designerDir, string outputDir) + static void GenerateDotNet(Files files, string designerDir, string outputDir, string specificationVersion) { + var resourcePath = "Opc.Ua.ModelCompiler.Design"; + + if (!String.IsNullOrEmpty(specificationVersion)) + { + resourcePath = $"Opc.Ua.ModelCompiler.Design.{specificationVersion}"; + } + ConstantsGenerator generator7 = new ConstantsGenerator( Language.DotNet, - designerDir + @"\Design\UA Attributes.xml", + $"{designerDir}UA Attributes.xml", outputDir, - files.NodeDictionaries); + files.NodeDictionaries, + resourcePath); generator7.Generate( "Opc.Ua", "Attributes", - designerDir + @"\Design\UA Attributes.csv", + $"{designerDir}UA Attributes.csv", false); ConstantsGenerator generator8 = new ConstantsGenerator( Language.DotNet, - designerDir + @"\Design\UA Status Codes.xml", + $"{designerDir}UA Status Codes.xml", outputDir, - files.NodeDictionaries); + files.NodeDictionaries, + resourcePath); generator8.Generate( "Opc.Ua", "StatusCodes", - designerDir + @"\Design\UA Status Codes.csv", + $"{designerDir}UA Status Codes.csv", false); ConstantsGenerator generator9 = new ConstantsGenerator( Language.CSV, - designerDir + @"\Design\UA Status Codes.xml", + $"{designerDir}UA Status Codes.xml", outputDir, - files.NodeDictionaries); + files.NodeDictionaries, + resourcePath); generator9.Generate( "Opc.Ua", "StatusCodes", - designerDir + @"\Design\UA Status Codes.csv", + $"{designerDir}UA Status Codes.csv", false); DotNetGenerator generator10 = new DotNetGenerator( - designerDir + @"\Design\UA Core Services.xml", + $"{designerDir}UA Core Services.xml", outputDir, - files.TypeDictionaries); + files.TypeDictionaries, + resourcePath); generator10.Generate("Opc.Ua", "Core", true); } - public static void GenerateDotNet(string rootDir) + public static void GenerateDotNet(string rootDir, string specificationVersion) { - string designerDir = @".\ModelCompiler\"; + string designerDir = $".\\ModelCompiler\\Design.{specificationVersion}\\"; Files files = new Files(); ProcessDictionary( "", - designerDir + @"\Design\UA Core Services.xml", + $"{designerDir}UA Core Services.xml", rootDir, - files); + files, + specificationVersion); - GenerateDotNet(files, designerDir, rootDir); + GenerateDotNet(files, designerDir, rootDir, specificationVersion); } - public static void GenerateAnsiC(string rootDir) + public static void GenerateAnsiC(string rootDir, string specificationVersion) { - string designerDir = @".\ModelCompiler\"; + string designerDir = $".\\ModelCompiler\\Design.{specificationVersion}\\"; Files files = new Files(); ProcessDictionary( "", - designerDir + @"\Design\UA Core Services.xml", + $"{designerDir}UA Core Services.xml", rootDir, - files); + files, + specificationVersion); - GenerateAnsiC(files, designerDir, rootDir); + GenerateAnsiC(files, designerDir, rootDir, specificationVersion); } } } diff --git a/ModelCompiler/StackGenerator/AnsiC/AnsiCGenerator.cs b/ModelCompiler/StackGenerator/AnsiC/AnsiCGenerator.cs index 372cb020..5ff86056 100644 --- a/ModelCompiler/StackGenerator/AnsiC/AnsiCGenerator.cs +++ b/ModelCompiler/StackGenerator/AnsiC/AnsiCGenerator.cs @@ -50,9 +50,10 @@ public class AnsiCGenerator : CodeGenerator public AnsiCGenerator( string inputPath, string outputDirectory, - Dictionary knownFiles) + Dictionary knownFiles, + string resourcePath) : - base(inputPath, outputDirectory, knownFiles) + base(inputPath, outputDirectory, knownFiles, resourcePath) { TargetLanguage = Language.AnsiC; } diff --git a/ModelCompiler/StackGenerator/CodeGenerator.cs b/ModelCompiler/StackGenerator/CodeGenerator.cs index 171c0eee..65616c32 100644 --- a/ModelCompiler/StackGenerator/CodeGenerator.cs +++ b/ModelCompiler/StackGenerator/CodeGenerator.cs @@ -54,10 +54,10 @@ public CodeGenerator() /// /// Generates the code from the contents of the address space. /// - public CodeGenerator(string inputPath, string outputDirectory, Dictionary knownFiles) + public CodeGenerator(string inputPath, string outputDirectory, Dictionary knownFiles, string resourcePath) { // load and validate type dictionary. - m_validator = new TypeDictionaryValidator(knownFiles); + m_validator = new TypeDictionaryValidator(knownFiles, resourcePath); m_validator.Validate(inputPath); // save output directory. diff --git a/ModelCompiler/StackGenerator/DataTypes/BinarySchemaGenerator.cs b/ModelCompiler/StackGenerator/DataTypes/BinarySchemaGenerator.cs index d491e927..599dbbf8 100644 --- a/ModelCompiler/StackGenerator/DataTypes/BinarySchemaGenerator.cs +++ b/ModelCompiler/StackGenerator/DataTypes/BinarySchemaGenerator.cs @@ -47,7 +47,13 @@ public class BinarySchemaGenerator : SchemaGenerator /// /// Generates the code from the contents of the address space. /// - public BinarySchemaGenerator(string inputPath, string outputDirectory, Dictionary knownFiles) : base (inputPath, outputDirectory, knownFiles) + public BinarySchemaGenerator( + string inputPath, + string outputDirectory, + Dictionary knownFiles, + string resourcePath) + : + base (inputPath, outputDirectory, knownFiles, resourcePath) { } #endregion diff --git a/ModelCompiler/StackGenerator/DataTypes/ConstantsGenerator.cs b/ModelCompiler/StackGenerator/DataTypes/ConstantsGenerator.cs index d2c84356..94c62ade 100644 --- a/ModelCompiler/StackGenerator/DataTypes/ConstantsGenerator.cs +++ b/ModelCompiler/StackGenerator/DataTypes/ConstantsGenerator.cs @@ -51,9 +51,10 @@ public class ConstantsGenerator : CodeGenerator Language targetLanguage, string inputPath, string outputDirectory, - Dictionary knownFiles) + Dictionary knownFiles, + string resourcePath) : - base(inputPath, outputDirectory, knownFiles) + base(inputPath, outputDirectory, knownFiles, resourcePath) { TargetLanguage = targetLanguage; } diff --git a/ModelCompiler/StackGenerator/DataTypes/SchemaGenerator.cs b/ModelCompiler/StackGenerator/DataTypes/SchemaGenerator.cs index 6b0df54e..34793474 100644 --- a/ModelCompiler/StackGenerator/DataTypes/SchemaGenerator.cs +++ b/ModelCompiler/StackGenerator/DataTypes/SchemaGenerator.cs @@ -47,10 +47,10 @@ public class SchemaGenerator /// /// Loads and validates the type dictionary. /// - protected SchemaGenerator(string inputPath, string outputDirectory, Dictionary knownFiles) + protected SchemaGenerator(string inputPath, string outputDirectory, Dictionary knownFiles, string resourcePath) { // load and validate type dictionary. - m_validator = new TypeDictionaryValidator(knownFiles); + m_validator = new TypeDictionaryValidator(knownFiles, resourcePath); m_validator.Validate(inputPath); // save output directory. diff --git a/ModelCompiler/StackGenerator/DataTypes/Templates/BinarySchema/BuiltInTypes.bsd b/ModelCompiler/StackGenerator/DataTypes/Templates/BinarySchema/BuiltInTypes.bsd index a0580fac..67cc13a4 100644 --- a/ModelCompiler/StackGenerator/DataTypes/Templates/BinarySchema/BuiltInTypes.bsd +++ b/ModelCompiler/StackGenerator/DataTypes/Templates/BinarySchema/BuiltInTypes.bsd @@ -91,8 +91,8 @@ A recursive structure containing diagnostic information associated with a status code. - + diff --git a/ModelCompiler/StackGenerator/DataTypes/XmlSchemaGenerator.cs b/ModelCompiler/StackGenerator/DataTypes/XmlSchemaGenerator.cs index 2443ee82..23f492ec 100644 --- a/ModelCompiler/StackGenerator/DataTypes/XmlSchemaGenerator.cs +++ b/ModelCompiler/StackGenerator/DataTypes/XmlSchemaGenerator.cs @@ -47,7 +47,7 @@ public class XmlSchemaGenerator : SchemaGenerator /// /// Generates the code from the contents of the address space. /// - public XmlSchemaGenerator(string inputPath, string outputDirectory, Dictionary knownFiles) : base (inputPath, outputDirectory, knownFiles) + public XmlSchemaGenerator(string inputPath, string outputDirectory, Dictionary knownFiles, string resourcePath) : base (inputPath, outputDirectory, knownFiles, resourcePath) { } #endregion diff --git a/ModelCompiler/StackGenerator/DotNet/DotNetGenerator.cs b/ModelCompiler/StackGenerator/DotNet/DotNetGenerator.cs index 7d97dc93..b5f3efeb 100644 --- a/ModelCompiler/StackGenerator/DotNet/DotNetGenerator.cs +++ b/ModelCompiler/StackGenerator/DotNet/DotNetGenerator.cs @@ -50,9 +50,10 @@ public class DotNetGenerator : CodeGenerator public DotNetGenerator( string inputPath, string outputDirectory, - Dictionary knownFiles) + Dictionary knownFiles, + string resourcePath) : - base(inputPath, outputDirectory, knownFiles) + base(inputPath, outputDirectory, knownFiles, resourcePath) { TargetLanguage = Language.DotNet; } diff --git a/ModelCompiler/StackGenerator/Validators/TypeDictionaryValidator.cs b/ModelCompiler/StackGenerator/Validators/TypeDictionaryValidator.cs index a4e0d8a9..7fc45763 100644 --- a/ModelCompiler/StackGenerator/Validators/TypeDictionaryValidator.cs +++ b/ModelCompiler/StackGenerator/Validators/TypeDictionaryValidator.cs @@ -48,16 +48,26 @@ public class TypeDictionaryValidator : SchemaValidator /// /// Intializes the object with default values. /// - public TypeDictionaryValidator() + public TypeDictionaryValidator(string resourcePath) { + var WellKnownDictionaries = new string[][] + { + new string[] { Namespaces.OpcUaBuiltInTypes, $"Opc.Ua.ModelCompiler.StackGenerator.Validators.BuiltInTypes.xml" } + }; + SetResourcePaths(WellKnownDictionaries); } /// /// Intializes the object with a file table. /// - public TypeDictionaryValidator(Dictionary fileTable) : base(fileTable) + public TypeDictionaryValidator(Dictionary fileTable, string resourcePath) : base(fileTable) { + var WellKnownDictionaries = new string[][] + { + new string[] { Namespaces.OpcUaBuiltInTypes, $"Opc.Ua.ModelCompiler.StackGenerator.Validators.BuiltInTypes.xml" } + }; + SetResourcePaths(WellKnownDictionaries); } #endregion @@ -71,6 +81,11 @@ public TypeDictionary Dictionary get { return m_dictionary; } } + /// + /// The location of the embedded resources. + /// + public string EmbeddedResourcePath { get; set; } + /// /// Finds the data type with the specified name. /// @@ -509,11 +524,6 @@ private static void ValidateEnumeratedType(EnumeratedType enumeratedType) #endregion #region Private Fields - private readonly string[][] WellKnownDictionaries = new string[][] - { - new string[] { Namespaces.OpcUaBuiltInTypes, "Opc.Ua.ModelCompiler.StackGenerator.Validators.BuiltInTypes.xml" } - }; - private TypeDictionary m_dictionary; private Dictionary m_datatypes; #endregion diff --git a/ModelCompiler/StackGenerator/Wireshark/Wireshark.cs b/ModelCompiler/StackGenerator/Wireshark/Wireshark.cs index 055a191f..e6bfe031 100644 --- a/ModelCompiler/StackGenerator/Wireshark/Wireshark.cs +++ b/ModelCompiler/StackGenerator/Wireshark/Wireshark.cs @@ -50,12 +50,13 @@ public class WiresharkGenerator : CodeGenerator public WiresharkGenerator( string inputPath, string outputDirectory, - Dictionary knownFiles) + Dictionary knownFiles, + string resourcePath) : - base(inputPath, outputDirectory, knownFiles) + base(inputPath, outputDirectory, knownFiles, resourcePath) { // load and validate type dictionary. - m_validator = new TypeDictionaryValidator(knownFiles); + m_validator = new TypeDictionaryValidator(knownFiles, resourcePath); m_validator.Validate(inputPath); TargetLanguage = Language.Wireshark; diff --git a/ModelCompiler/Templates/BinarySchema/BuiltInTypes.bsd b/ModelCompiler/Templates/BinarySchema/BuiltInTypes.bsd index 861dc207..2e03197f 100644 --- a/ModelCompiler/Templates/BinarySchema/BuiltInTypes.bsd +++ b/ModelCompiler/Templates/BinarySchema/BuiltInTypes.bsd @@ -91,8 +91,8 @@ A recursive structure containing diagnostic information associated with a status code. - + diff --git a/ModelCompiler/UA Model Compiler.csproj b/ModelCompiler/UA Model Compiler.csproj index 0be788c6..6db4aefa 100644 --- a/ModelCompiler/UA Model Compiler.csproj +++ b/ModelCompiler/UA Model Compiler.csproj @@ -229,6 +229,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -236,7 +266,6 @@ - @@ -250,6 +279,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -259,7 +321,6 @@ Designer - Designer diff --git a/PublishModel.bat b/PublishModel.bat index 7c026926..93b538e8 100644 --- a/PublishModel.bat +++ b/PublishModel.bat @@ -9,19 +9,25 @@ REM **************************************************************************** SETLOCAL set MODELCOMPILER=.\Bin\Release\Opc.Ua.ModelCompiler.exe -set OUTPUT=.\Published set SOURCE=%1 set TARGET=%2 +set OUTPUT=..\nodesets +set INPUT=.\ModelCompiler\Design + +IF NOT "%3"=="" (set INPUT=%INPUT%.%3) else (set INPUT=%INPUT%) +IF NOT "%3"=="" (set OUTPUT=%OUTPUT%\%3) else (set OUTPUT=%OUTPUT%\master) +IF NOT "%3"=="" set VERSION=-version %3 +IF NOT "%4"=="" set EXCLUDE=-exclude %4 ECHO Building Model %TARGET% IF NOT EXIST "%OUTPUT%\%TARGET%" MKDIR "%OUTPUT%\%TARGET%" -ECHO %MODELCOMPILER% -d2 ".\ModelCompiler\Design\%SOURCE%.xml" -cg ".\ModelCompiler\Design\%SOURCE%.csv" -o2 "%OUTPUT%\%TARGET%\" -%MODELCOMPILER% -d2 ".\ModelCompiler\Design\%SOURCE%.xml" -cg ".\ModelCompiler\Design\%SOURCE%.csv" -o2 "%OUTPUT%\%TARGET%\" +ECHO %MODELCOMPILER% %VERSION% %EXCLUDE% -d2 "%INPUT%\%SOURCE%.xml" -cg "%INPUT%\%SOURCE%.csv" -o2 "%OUTPUT%\%TARGET%\" +%MODELCOMPILER% %VERSION% %EXCLUDE% -d2 "%INPUT%\%SOURCE%.xml" -cg "%INPUT%\%SOURCE%.csv" -o2 "%OUTPUT%\%TARGET%\" IF %ERRORLEVEL% NEQ 0 ( ECHO Failed %TARGET% & EXIT /B 3 ) ECHO Copying Model files to %OUTPUT%\%TARGET%\%SOURCE% -COPY ".\ModelCompiler\Design\%SOURCE%.xml" "%OUTPUT%\%TARGET%\%SOURCE%.xml" -COPY ".\ModelCompiler\Design\%SOURCE%.csv" "%OUTPUT%\%TARGET%\%SOURCE%.csv" +COPY "%INPUT%\%SOURCE%.xml" "%OUTPUT%\%TARGET%\%SOURCE%.xml" +COPY "%INPUT%\%SOURCE%.csv" "%OUTPUT%\%TARGET%\%SOURCE%.csv" DEL /f /q "%OUTPUT%\%TARGET%\*NodeSet.xml" GOTO theEnd