You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/08/28 10:03:53 UTC

[plc4x] branch develop updated (1b9239b738 -> 2663b5d083)

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


    from 1b9239b738 fix(opcua): exclude PortableNodeId
     new 673de2c62b fix(opcua): use constants for OpcuaNodeIdServices as enum explodes in java for now
     new 2663b5d083 fix(opcua): small fixes for enum generation

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 plc4go/protocols/opcua/readwrite/ParserHelper.go   |      2 +
 .../protocols/opcua/readwrite/XmlParserHelper.go   |      2 +
 .../readwrite/model/ExtensionObjectDefinition.go   |      4 -
 .../opcua/readwrite/model/OpcuaNodeIdServices.go   | 636145 +++++++++++++-----
 .../opcua/readwrite/ExtensionObjectDefinition.java |      6 -
 .../java/opcua/readwrite/OpcuaNodeIdServices.java  | 489926 +++++++++++++-
 protocols/opcua/pom.xml                            |     16 +-
 protocols/opcua/src/main/xslt/opc-services.xsl     |      4 +-
 8 files changed, 934258 insertions(+), 191847 deletions(-)


[plc4x] 02/02: fix(opcua): small fixes for enum generation

Posted by sr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 2663b5d08372039b33a58c15cebd5bc111f7732e
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon Aug 28 12:03:41 2023 +0200

    fix(opcua): small fixes for enum generation
---
 plc4go/protocols/opcua/readwrite/ParserHelper.go   |      2 +
 .../protocols/opcua/readwrite/XmlParserHelper.go   |      2 +
 .../readwrite/model/ExtensionObjectDefinition.go   |      4 -
 .../opcua/readwrite/model/OpcuaNodeIdServices.go   | 636145 +++++++++++++-----
 .../opcua/readwrite/ExtensionObjectDefinition.java |      6 -
 .../java/opcua/readwrite/OpcuaNodeIdServices.java  | 489926 +++++++++++++-
 protocols/opcua/pom.xml                            |     16 +-
 protocols/opcua/src/main/xslt/opc-services.xsl     |      2 +-
 8 files changed, 934257 insertions(+), 191846 deletions(-)

diff --git a/plc4go/protocols/opcua/readwrite/ParserHelper.go b/plc4go/protocols/opcua/readwrite/ParserHelper.go
index 7388cae7d5..9787bfc8f8 100644
--- a/plc4go/protocols/opcua/readwrite/ParserHelper.go
+++ b/plc4go/protocols/opcua/readwrite/ParserHelper.go
@@ -68,6 +68,8 @@ func (m OpcuaParserHelper) Parse(typeName string, arguments []string, io utils.R
 		return model.NumericNodeIdParseWithBuffer(context.Background(), io)
 	case "FourByteNodeId":
 		return model.FourByteNodeIdParseWithBuffer(context.Background(), io)
+	case "OpcuaNodeIdServices":
+		return model.OpcuaNodeIdServicesParseWithBuffer(context.Background(), io)
 	case "AudioDataType":
 		return model.AudioDataTypeParseWithBuffer(context.Background(), io)
 	case "UserIdentityTokenDefinition":
diff --git a/plc4go/protocols/opcua/readwrite/XmlParserHelper.go b/plc4go/protocols/opcua/readwrite/XmlParserHelper.go
index 3ae5260357..0e9272b184 100644
--- a/plc4go/protocols/opcua/readwrite/XmlParserHelper.go
+++ b/plc4go/protocols/opcua/readwrite/XmlParserHelper.go
@@ -75,6 +75,8 @@ func (m OpcuaXmlParserHelper) Parse(typeName string, xmlString string, parserArg
 		return model.NumericNodeIdParseWithBuffer(context.Background(), utils.NewXmlReadBuffer(strings.NewReader(xmlString)))
 	case "FourByteNodeId":
 		return model.FourByteNodeIdParseWithBuffer(context.Background(), utils.NewXmlReadBuffer(strings.NewReader(xmlString)))
+	case "OpcuaNodeIdServices":
+		return model.OpcuaNodeIdServicesParseWithBuffer(context.Background(), utils.NewXmlReadBuffer(strings.NewReader(xmlString)))
 	case "AudioDataType":
 		return model.AudioDataTypeParseWithBuffer(context.Background(), utils.NewXmlReadBuffer(strings.NewReader(xmlString)))
 	case "UserIdentityTokenDefinition":
diff --git a/plc4go/protocols/opcua/readwrite/model/ExtensionObjectDefinition.go b/plc4go/protocols/opcua/readwrite/model/ExtensionObjectDefinition.go
index c3d1f5a5f6..23da87d5bf 100644
--- a/plc4go/protocols/opcua/readwrite/model/ExtensionObjectDefinition.go
+++ b/plc4go/protocols/opcua/readwrite/model/ExtensionObjectDefinition.go
@@ -161,8 +161,6 @@ func ExtensionObjectDefinitionParseWithBuffer(ctx context.Context, readBuffer ut
 		_childTemp, typeSwitchError = DataTypeDescriptionParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "24107": // PortableQualifiedName
 		_childTemp, typeSwitchError = PortableQualifiedNameParseWithBuffer(ctx, readBuffer, identifier)
-	case identifier == "24108": // PortableNodeId
-		_childTemp, typeSwitchError = PortableNodeIdParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "24109": // UnsignedRationalNumber
 		_childTemp, typeSwitchError = UnsignedRationalNumberParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "14526": // FieldMetaData
@@ -213,8 +211,6 @@ func ExtensionObjectDefinitionParseWithBuffer(ctx context.Context, readBuffer ut
 		_childTemp, typeSwitchError = QosDataTypeParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "25521": // PubSubConfigurationRefDataType
 		_childTemp, typeSwitchError = PubSubConfigurationRefDataTypeParseWithBuffer(ctx, readBuffer, identifier)
-	case identifier == "25522": // PubSubConfigurationValueDataType
-		_childTemp, typeSwitchError = PubSubConfigurationValueDataTypeParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "23470": // AliasNameDataType
 		_childTemp, typeSwitchError = AliasNameDataTypeParseWithBuffer(ctx, readBuffer, identifier)
 	case identifier == "24283": // UserManagementDataType
diff --git a/plc4go/protocols/opcua/readwrite/model/OpcuaNodeIdServices.go b/plc4go/protocols/opcua/readwrite/model/OpcuaNodeIdServices.go
index b5a16350bf..8971c301f1 100644
--- a/plc4go/protocols/opcua/readwrite/model/OpcuaNodeIdServices.go
+++ b/plc4go/protocols/opcua/readwrite/model/OpcuaNodeIdServices.go
@@ -22,164234 +22,471975 @@ package model
 import (
 	"context"
 	"fmt"
-
 	"github.com/apache/plc4x/plc4go/spi/utils"
-
 	"github.com/pkg/errors"
 	"github.com/rs/zerolog"
 )
 
 // Code generated by code-generation. DO NOT EDIT.
 
-// OpcuaNodeIdServices is an enum
-type OpcuaNodeIdServices int32
+// Constant values.
+const OpcuaNodeIdServices_BOOLEAN uint32 = uint32(1)
+const OpcuaNodeIdServices_SBYTE uint32 = uint32(2)
+const OpcuaNodeIdServices_BYTE uint32 = uint32(3)
+const OpcuaNodeIdServices_INT16 uint32 = uint32(4)
+const OpcuaNodeIdServices_UINT16 uint32 = uint32(5)
+const OpcuaNodeIdServices_INT32 uint32 = uint32(6)
+const OpcuaNodeIdServices_UINT32 uint32 = uint32(7)
+const OpcuaNodeIdServices_INT64 uint32 = uint32(8)
+const OpcuaNodeIdServices_UINT64 uint32 = uint32(9)
+const OpcuaNodeIdServices_FLOAT uint32 = uint32(10)
+const OpcuaNodeIdServices_DOUBLE uint32 = uint32(11)
+const OpcuaNodeIdServices_STRING uint32 = uint32(12)
+const OpcuaNodeIdServices_DATETIME uint32 = uint32(13)
+const OpcuaNodeIdServices_GUID uint32 = uint32(14)
+const OpcuaNodeIdServices_BYTESTRING uint32 = uint32(15)
+const OpcuaNodeIdServices_XMLELEMENT uint32 = uint32(16)
+const OpcuaNodeIdServices_NODEID uint32 = uint32(17)
+const OpcuaNodeIdServices_EXPANDEDNODEID uint32 = uint32(18)
+const OpcuaNodeIdServices_STATUSCODE uint32 = uint32(19)
+const OpcuaNodeIdServices_QUALIFIEDNAME uint32 = uint32(20)
+const OpcuaNodeIdServices_LOCALIZEDTEXT uint32 = uint32(21)
+const OpcuaNodeIdServices_STRUCTURE uint32 = uint32(22)
+const OpcuaNodeIdServices_DATAVALUE uint32 = uint32(23)
+const OpcuaNodeIdServices_BASEDATATYPE uint32 = uint32(24)
+const OpcuaNodeIdServices_DIAGNOSTICINFO uint32 = uint32(25)
+const OpcuaNodeIdServices_NUMBER uint32 = uint32(26)
+const OpcuaNodeIdServices_INTEGER uint32 = uint32(27)
+const OpcuaNodeIdServices_UINTEGER uint32 = uint32(28)
+const OpcuaNodeIdServices_ENUMERATION uint32 = uint32(29)
+const OpcuaNodeIdServices_IMAGE uint32 = uint32(30)
+const OpcuaNodeIdServices_REFERENCES uint32 = uint32(31)
+const OpcuaNodeIdServices_NONHIERARCHICALREFERENCES uint32 = uint32(32)
+const OpcuaNodeIdServices_HIERARCHICALREFERENCES uint32 = uint32(33)
+const OpcuaNodeIdServices_HASCHILD uint32 = uint32(34)
+const OpcuaNodeIdServices_ORGANIZES uint32 = uint32(35)
+const OpcuaNodeIdServices_HASEVENTSOURCE uint32 = uint32(36)
+const OpcuaNodeIdServices_HASMODELLINGRULE uint32 = uint32(37)
+const OpcuaNodeIdServices_HASENCODING uint32 = uint32(38)
+const OpcuaNodeIdServices_HASDESCRIPTION uint32 = uint32(39)
+const OpcuaNodeIdServices_HASTYPEDEFINITION uint32 = uint32(40)
+const OpcuaNodeIdServices_GENERATESEVENT uint32 = uint32(41)
+const OpcuaNodeIdServices_AGGREGATES uint32 = uint32(44)
+const OpcuaNodeIdServices_HASSUBTYPE uint32 = uint32(45)
+const OpcuaNodeIdServices_HASPROPERTY uint32 = uint32(46)
+const OpcuaNodeIdServices_HASCOMPONENT uint32 = uint32(47)
+const OpcuaNodeIdServices_HASNOTIFIER uint32 = uint32(48)
+const OpcuaNodeIdServices_HASORDEREDCOMPONENT uint32 = uint32(49)
+const OpcuaNodeIdServices_DECIMAL uint32 = uint32(50)
+const OpcuaNodeIdServices_FROMSTATE uint32 = uint32(51)
+const OpcuaNodeIdServices_TOSTATE uint32 = uint32(52)
+const OpcuaNodeIdServices_HASCAUSE uint32 = uint32(53)
+const OpcuaNodeIdServices_HASEFFECT uint32 = uint32(54)
+const OpcuaNodeIdServices_HASHISTORICALCONFIGURATION uint32 = uint32(56)
+const OpcuaNodeIdServices_BASEOBJECTTYPE uint32 = uint32(58)
+const OpcuaNodeIdServices_FOLDERTYPE uint32 = uint32(61)
+const OpcuaNodeIdServices_BASEVARIABLETYPE uint32 = uint32(62)
+const OpcuaNodeIdServices_BASEDATAVARIABLETYPE uint32 = uint32(63)
+const OpcuaNodeIdServices_PROPERTYTYPE uint32 = uint32(68)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTIONTYPE uint32 = uint32(69)
+const OpcuaNodeIdServices_DATATYPEDICTIONARYTYPE uint32 = uint32(72)
+const OpcuaNodeIdServices_DATATYPESYSTEMTYPE uint32 = uint32(75)
+const OpcuaNodeIdServices_DATATYPEENCODINGTYPE uint32 = uint32(76)
+const OpcuaNodeIdServices_MODELLINGRULETYPE uint32 = uint32(77)
+const OpcuaNodeIdServices_MODELLINGRULE_MANDATORY uint32 = uint32(78)
+const OpcuaNodeIdServices_MODELLINGRULE_OPTIONAL uint32 = uint32(80)
+const OpcuaNodeIdServices_MODELLINGRULE_EXPOSESITSARRAY uint32 = uint32(83)
+const OpcuaNodeIdServices_ROOTFOLDER uint32 = uint32(84)
+const OpcuaNodeIdServices_OBJECTSFOLDER uint32 = uint32(85)
+const OpcuaNodeIdServices_TYPESFOLDER uint32 = uint32(86)
+const OpcuaNodeIdServices_VIEWSFOLDER uint32 = uint32(87)
+const OpcuaNodeIdServices_OBJECTTYPESFOLDER uint32 = uint32(88)
+const OpcuaNodeIdServices_VARIABLETYPESFOLDER uint32 = uint32(89)
+const OpcuaNodeIdServices_DATATYPESFOLDER uint32 = uint32(90)
+const OpcuaNodeIdServices_REFERENCETYPESFOLDER uint32 = uint32(91)
+const OpcuaNodeIdServices_XMLSCHEMA_TYPESYSTEM uint32 = uint32(92)
+const OpcuaNodeIdServices_OPCBINARYSCHEMA_TYPESYSTEM uint32 = uint32(93)
+const OpcuaNodeIdServices_PERMISSIONTYPE uint32 = uint32(94)
+const OpcuaNodeIdServices_ACCESSRESTRICTIONTYPE uint32 = uint32(95)
+const OpcuaNodeIdServices_ROLEPERMISSIONTYPE uint32 = uint32(96)
+const OpcuaNodeIdServices_DATATYPEDEFINITION uint32 = uint32(97)
+const OpcuaNodeIdServices_STRUCTURETYPE uint32 = uint32(98)
+const OpcuaNodeIdServices_STRUCTUREDEFINITION uint32 = uint32(99)
+const OpcuaNodeIdServices_ENUMDEFINITION uint32 = uint32(100)
+const OpcuaNodeIdServices_STRUCTUREFIELD uint32 = uint32(101)
+const OpcuaNodeIdServices_ENUMFIELD uint32 = uint32(102)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTIONTYPE_DATATYPEVERSION uint32 = uint32(104)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTIONTYPE_DICTIONARYFRAGMENT uint32 = uint32(105)
+const OpcuaNodeIdServices_DATATYPEDICTIONARYTYPE_DATATYPEVERSION uint32 = uint32(106)
+const OpcuaNodeIdServices_DATATYPEDICTIONARYTYPE_NAMESPACEURI uint32 = uint32(107)
+const OpcuaNodeIdServices_HASSUBSTATEMACHINE uint32 = uint32(117)
+const OpcuaNodeIdServices_NAMINGRULETYPE uint32 = uint32(120)
+const OpcuaNodeIdServices_DATATYPEDEFINITION_ENCODING_DEFAULTBINARY uint32 = uint32(121)
+const OpcuaNodeIdServices_STRUCTUREDEFINITION_ENCODING_DEFAULTBINARY uint32 = uint32(122)
+const OpcuaNodeIdServices_ENUMDEFINITION_ENCODING_DEFAULTBINARY uint32 = uint32(123)
+const OpcuaNodeIdServices_DATASETMETADATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(124)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(125)
+const OpcuaNodeIdServices_STRUCTUREDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(126)
+const OpcuaNodeIdServices_ENUMDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(127)
+const OpcuaNodeIdServices_ROLEPERMISSIONTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(128)
+const OpcuaNodeIdServices_HASARGUMENTDESCRIPTION uint32 = uint32(129)
+const OpcuaNodeIdServices_HASOPTIONALINPUTARGUMENTDESCRIPTION uint32 = uint32(131)
+const OpcuaNodeIdServices_IDTYPE uint32 = uint32(256)
+const OpcuaNodeIdServices_NODECLASS uint32 = uint32(257)
+const OpcuaNodeIdServices_NODE uint32 = uint32(258)
+const OpcuaNodeIdServices_NODE_ENCODING_DEFAULTXML uint32 = uint32(259)
+const OpcuaNodeIdServices_NODE_ENCODING_DEFAULTBINARY uint32 = uint32(260)
+const OpcuaNodeIdServices_OBJECTNODE uint32 = uint32(261)
+const OpcuaNodeIdServices_OBJECTNODE_ENCODING_DEFAULTXML uint32 = uint32(262)
+const OpcuaNodeIdServices_OBJECTNODE_ENCODING_DEFAULTBINARY uint32 = uint32(263)
+const OpcuaNodeIdServices_OBJECTTYPENODE uint32 = uint32(264)
+const OpcuaNodeIdServices_OBJECTTYPENODE_ENCODING_DEFAULTXML uint32 = uint32(265)
+const OpcuaNodeIdServices_OBJECTTYPENODE_ENCODING_DEFAULTBINARY uint32 = uint32(266)
+const OpcuaNodeIdServices_VARIABLENODE uint32 = uint32(267)
+const OpcuaNodeIdServices_VARIABLENODE_ENCODING_DEFAULTXML uint32 = uint32(268)
+const OpcuaNodeIdServices_VARIABLENODE_ENCODING_DEFAULTBINARY uint32 = uint32(269)
+const OpcuaNodeIdServices_VARIABLETYPENODE uint32 = uint32(270)
+const OpcuaNodeIdServices_VARIABLETYPENODE_ENCODING_DEFAULTXML uint32 = uint32(271)
+const OpcuaNodeIdServices_VARIABLETYPENODE_ENCODING_DEFAULTBINARY uint32 = uint32(272)
+const OpcuaNodeIdServices_REFERENCETYPENODE uint32 = uint32(273)
+const OpcuaNodeIdServices_REFERENCETYPENODE_ENCODING_DEFAULTXML uint32 = uint32(274)
+const OpcuaNodeIdServices_REFERENCETYPENODE_ENCODING_DEFAULTBINARY uint32 = uint32(275)
+const OpcuaNodeIdServices_METHODNODE uint32 = uint32(276)
+const OpcuaNodeIdServices_METHODNODE_ENCODING_DEFAULTXML uint32 = uint32(277)
+const OpcuaNodeIdServices_METHODNODE_ENCODING_DEFAULTBINARY uint32 = uint32(278)
+const OpcuaNodeIdServices_VIEWNODE uint32 = uint32(279)
+const OpcuaNodeIdServices_VIEWNODE_ENCODING_DEFAULTXML uint32 = uint32(280)
+const OpcuaNodeIdServices_VIEWNODE_ENCODING_DEFAULTBINARY uint32 = uint32(281)
+const OpcuaNodeIdServices_DATATYPENODE uint32 = uint32(282)
+const OpcuaNodeIdServices_DATATYPENODE_ENCODING_DEFAULTXML uint32 = uint32(283)
+const OpcuaNodeIdServices_DATATYPENODE_ENCODING_DEFAULTBINARY uint32 = uint32(284)
+const OpcuaNodeIdServices_REFERENCENODE uint32 = uint32(285)
+const OpcuaNodeIdServices_REFERENCENODE_ENCODING_DEFAULTXML uint32 = uint32(286)
+const OpcuaNodeIdServices_REFERENCENODE_ENCODING_DEFAULTBINARY uint32 = uint32(287)
+const OpcuaNodeIdServices_INTEGERID uint32 = uint32(288)
+const OpcuaNodeIdServices_COUNTER uint32 = uint32(289)
+const OpcuaNodeIdServices_DURATION uint32 = uint32(290)
+const OpcuaNodeIdServices_NUMERICRANGE uint32 = uint32(291)
+const OpcuaNodeIdServices_UTCTIME uint32 = uint32(294)
+const OpcuaNodeIdServices_LOCALEID uint32 = uint32(295)
+const OpcuaNodeIdServices_ARGUMENT uint32 = uint32(296)
+const OpcuaNodeIdServices_ARGUMENT_ENCODING_DEFAULTXML uint32 = uint32(297)
+const OpcuaNodeIdServices_ARGUMENT_ENCODING_DEFAULTBINARY uint32 = uint32(298)
+const OpcuaNodeIdServices_STATUSRESULT uint32 = uint32(299)
+const OpcuaNodeIdServices_STATUSRESULT_ENCODING_DEFAULTXML uint32 = uint32(300)
+const OpcuaNodeIdServices_STATUSRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(301)
+const OpcuaNodeIdServices_MESSAGESECURITYMODE uint32 = uint32(302)
+const OpcuaNodeIdServices_USERTOKENTYPE uint32 = uint32(303)
+const OpcuaNodeIdServices_USERTOKENPOLICY uint32 = uint32(304)
+const OpcuaNodeIdServices_USERTOKENPOLICY_ENCODING_DEFAULTXML uint32 = uint32(305)
+const OpcuaNodeIdServices_USERTOKENPOLICY_ENCODING_DEFAULTBINARY uint32 = uint32(306)
+const OpcuaNodeIdServices_APPLICATIONTYPE uint32 = uint32(307)
+const OpcuaNodeIdServices_APPLICATIONDESCRIPTION uint32 = uint32(308)
+const OpcuaNodeIdServices_APPLICATIONDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(309)
+const OpcuaNodeIdServices_APPLICATIONDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(310)
+const OpcuaNodeIdServices_APPLICATIONINSTANCECERTIFICATE uint32 = uint32(311)
+const OpcuaNodeIdServices_ENDPOINTDESCRIPTION uint32 = uint32(312)
+const OpcuaNodeIdServices_ENDPOINTDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(313)
+const OpcuaNodeIdServices_ENDPOINTDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(314)
+const OpcuaNodeIdServices_SECURITYTOKENREQUESTTYPE uint32 = uint32(315)
+const OpcuaNodeIdServices_USERIDENTITYTOKEN uint32 = uint32(316)
+const OpcuaNodeIdServices_USERIDENTITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(317)
+const OpcuaNodeIdServices_USERIDENTITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(318)
+const OpcuaNodeIdServices_ANONYMOUSIDENTITYTOKEN uint32 = uint32(319)
+const OpcuaNodeIdServices_ANONYMOUSIDENTITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(320)
+const OpcuaNodeIdServices_ANONYMOUSIDENTITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(321)
+const OpcuaNodeIdServices_USERNAMEIDENTITYTOKEN uint32 = uint32(322)
+const OpcuaNodeIdServices_USERNAMEIDENTITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(323)
+const OpcuaNodeIdServices_USERNAMEIDENTITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(324)
+const OpcuaNodeIdServices_X509IDENTITYTOKEN uint32 = uint32(325)
+const OpcuaNodeIdServices_X509IDENTITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(326)
+const OpcuaNodeIdServices_X509IDENTITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(327)
+const OpcuaNodeIdServices_ENDPOINTCONFIGURATION uint32 = uint32(331)
+const OpcuaNodeIdServices_ENDPOINTCONFIGURATION_ENCODING_DEFAULTXML uint32 = uint32(332)
+const OpcuaNodeIdServices_ENDPOINTCONFIGURATION_ENCODING_DEFAULTBINARY uint32 = uint32(333)
+const OpcuaNodeIdServices_BUILDINFO uint32 = uint32(338)
+const OpcuaNodeIdServices_BUILDINFO_ENCODING_DEFAULTXML uint32 = uint32(339)
+const OpcuaNodeIdServices_BUILDINFO_ENCODING_DEFAULTBINARY uint32 = uint32(340)
+const OpcuaNodeIdServices_SIGNEDSOFTWARECERTIFICATE uint32 = uint32(344)
+const OpcuaNodeIdServices_SIGNEDSOFTWARECERTIFICATE_ENCODING_DEFAULTXML uint32 = uint32(345)
+const OpcuaNodeIdServices_SIGNEDSOFTWARECERTIFICATE_ENCODING_DEFAULTBINARY uint32 = uint32(346)
+const OpcuaNodeIdServices_ATTRIBUTEWRITEMASK uint32 = uint32(347)
+const OpcuaNodeIdServices_NODEATTRIBUTESMASK uint32 = uint32(348)
+const OpcuaNodeIdServices_NODEATTRIBUTES uint32 = uint32(349)
+const OpcuaNodeIdServices_NODEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(350)
+const OpcuaNodeIdServices_NODEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(351)
+const OpcuaNodeIdServices_OBJECTATTRIBUTES uint32 = uint32(352)
+const OpcuaNodeIdServices_OBJECTATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(353)
+const OpcuaNodeIdServices_OBJECTATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(354)
+const OpcuaNodeIdServices_VARIABLEATTRIBUTES uint32 = uint32(355)
+const OpcuaNodeIdServices_VARIABLEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(356)
+const OpcuaNodeIdServices_VARIABLEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(357)
+const OpcuaNodeIdServices_METHODATTRIBUTES uint32 = uint32(358)
+const OpcuaNodeIdServices_METHODATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(359)
+const OpcuaNodeIdServices_METHODATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(360)
+const OpcuaNodeIdServices_OBJECTTYPEATTRIBUTES uint32 = uint32(361)
+const OpcuaNodeIdServices_OBJECTTYPEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(362)
+const OpcuaNodeIdServices_OBJECTTYPEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(363)
+const OpcuaNodeIdServices_VARIABLETYPEATTRIBUTES uint32 = uint32(364)
+const OpcuaNodeIdServices_VARIABLETYPEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(365)
+const OpcuaNodeIdServices_VARIABLETYPEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(366)
+const OpcuaNodeIdServices_REFERENCETYPEATTRIBUTES uint32 = uint32(367)
+const OpcuaNodeIdServices_REFERENCETYPEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(368)
+const OpcuaNodeIdServices_REFERENCETYPEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(369)
+const OpcuaNodeIdServices_DATATYPEATTRIBUTES uint32 = uint32(370)
+const OpcuaNodeIdServices_DATATYPEATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(371)
+const OpcuaNodeIdServices_DATATYPEATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(372)
+const OpcuaNodeIdServices_VIEWATTRIBUTES uint32 = uint32(373)
+const OpcuaNodeIdServices_VIEWATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(374)
+const OpcuaNodeIdServices_VIEWATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(375)
+const OpcuaNodeIdServices_ADDNODESITEM uint32 = uint32(376)
+const OpcuaNodeIdServices_ADDNODESITEM_ENCODING_DEFAULTXML uint32 = uint32(377)
+const OpcuaNodeIdServices_ADDNODESITEM_ENCODING_DEFAULTBINARY uint32 = uint32(378)
+const OpcuaNodeIdServices_ADDREFERENCESITEM uint32 = uint32(379)
+const OpcuaNodeIdServices_ADDREFERENCESITEM_ENCODING_DEFAULTXML uint32 = uint32(380)
+const OpcuaNodeIdServices_ADDREFERENCESITEM_ENCODING_DEFAULTBINARY uint32 = uint32(381)
+const OpcuaNodeIdServices_DELETENODESITEM uint32 = uint32(382)
+const OpcuaNodeIdServices_DELETENODESITEM_ENCODING_DEFAULTXML uint32 = uint32(383)
+const OpcuaNodeIdServices_DELETENODESITEM_ENCODING_DEFAULTBINARY uint32 = uint32(384)
+const OpcuaNodeIdServices_DELETEREFERENCESITEM uint32 = uint32(385)
+const OpcuaNodeIdServices_DELETEREFERENCESITEM_ENCODING_DEFAULTXML uint32 = uint32(386)
+const OpcuaNodeIdServices_DELETEREFERENCESITEM_ENCODING_DEFAULTBINARY uint32 = uint32(387)
+const OpcuaNodeIdServices_SESSIONAUTHENTICATIONTOKEN uint32 = uint32(388)
+const OpcuaNodeIdServices_REQUESTHEADER uint32 = uint32(389)
+const OpcuaNodeIdServices_REQUESTHEADER_ENCODING_DEFAULTXML uint32 = uint32(390)
+const OpcuaNodeIdServices_REQUESTHEADER_ENCODING_DEFAULTBINARY uint32 = uint32(391)
+const OpcuaNodeIdServices_RESPONSEHEADER uint32 = uint32(392)
+const OpcuaNodeIdServices_RESPONSEHEADER_ENCODING_DEFAULTXML uint32 = uint32(393)
+const OpcuaNodeIdServices_RESPONSEHEADER_ENCODING_DEFAULTBINARY uint32 = uint32(394)
+const OpcuaNodeIdServices_SERVICEFAULT uint32 = uint32(395)
+const OpcuaNodeIdServices_SERVICEFAULT_ENCODING_DEFAULTXML uint32 = uint32(396)
+const OpcuaNodeIdServices_SERVICEFAULT_ENCODING_DEFAULTBINARY uint32 = uint32(397)
+const OpcuaNodeIdServices_FINDSERVERSREQUEST uint32 = uint32(420)
+const OpcuaNodeIdServices_FINDSERVERSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(421)
+const OpcuaNodeIdServices_FINDSERVERSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(422)
+const OpcuaNodeIdServices_FINDSERVERSRESPONSE uint32 = uint32(423)
+const OpcuaNodeIdServices_FINDSERVERSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(424)
+const OpcuaNodeIdServices_FINDSERVERSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(425)
+const OpcuaNodeIdServices_GETENDPOINTSREQUEST uint32 = uint32(426)
+const OpcuaNodeIdServices_GETENDPOINTSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(427)
+const OpcuaNodeIdServices_GETENDPOINTSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(428)
+const OpcuaNodeIdServices_GETENDPOINTSRESPONSE uint32 = uint32(429)
+const OpcuaNodeIdServices_GETENDPOINTSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(430)
+const OpcuaNodeIdServices_GETENDPOINTSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(431)
+const OpcuaNodeIdServices_REGISTEREDSERVER uint32 = uint32(432)
+const OpcuaNodeIdServices_REGISTEREDSERVER_ENCODING_DEFAULTXML uint32 = uint32(433)
+const OpcuaNodeIdServices_REGISTEREDSERVER_ENCODING_DEFAULTBINARY uint32 = uint32(434)
+const OpcuaNodeIdServices_REGISTERSERVERREQUEST uint32 = uint32(435)
+const OpcuaNodeIdServices_REGISTERSERVERREQUEST_ENCODING_DEFAULTXML uint32 = uint32(436)
+const OpcuaNodeIdServices_REGISTERSERVERREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(437)
+const OpcuaNodeIdServices_REGISTERSERVERRESPONSE uint32 = uint32(438)
+const OpcuaNodeIdServices_REGISTERSERVERRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(439)
+const OpcuaNodeIdServices_REGISTERSERVERRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(440)
+const OpcuaNodeIdServices_CHANNELSECURITYTOKEN uint32 = uint32(441)
+const OpcuaNodeIdServices_CHANNELSECURITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(442)
+const OpcuaNodeIdServices_CHANNELSECURITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(443)
+const OpcuaNodeIdServices_OPENSECURECHANNELREQUEST uint32 = uint32(444)
+const OpcuaNodeIdServices_OPENSECURECHANNELREQUEST_ENCODING_DEFAULTXML uint32 = uint32(445)
+const OpcuaNodeIdServices_OPENSECURECHANNELREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(446)
+const OpcuaNodeIdServices_OPENSECURECHANNELRESPONSE uint32 = uint32(447)
+const OpcuaNodeIdServices_OPENSECURECHANNELRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(448)
+const OpcuaNodeIdServices_OPENSECURECHANNELRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(449)
+const OpcuaNodeIdServices_CLOSESECURECHANNELREQUEST uint32 = uint32(450)
+const OpcuaNodeIdServices_CLOSESECURECHANNELREQUEST_ENCODING_DEFAULTXML uint32 = uint32(451)
+const OpcuaNodeIdServices_CLOSESECURECHANNELREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(452)
+const OpcuaNodeIdServices_CLOSESECURECHANNELRESPONSE uint32 = uint32(453)
+const OpcuaNodeIdServices_CLOSESECURECHANNELRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(454)
+const OpcuaNodeIdServices_CLOSESECURECHANNELRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(455)
+const OpcuaNodeIdServices_SIGNATUREDATA uint32 = uint32(456)
+const OpcuaNodeIdServices_SIGNATUREDATA_ENCODING_DEFAULTXML uint32 = uint32(457)
+const OpcuaNodeIdServices_SIGNATUREDATA_ENCODING_DEFAULTBINARY uint32 = uint32(458)
+const OpcuaNodeIdServices_CREATESESSIONREQUEST uint32 = uint32(459)
+const OpcuaNodeIdServices_CREATESESSIONREQUEST_ENCODING_DEFAULTXML uint32 = uint32(460)
+const OpcuaNodeIdServices_CREATESESSIONREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(461)
+const OpcuaNodeIdServices_CREATESESSIONRESPONSE uint32 = uint32(462)
+const OpcuaNodeIdServices_CREATESESSIONRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(463)
+const OpcuaNodeIdServices_CREATESESSIONRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(464)
+const OpcuaNodeIdServices_ACTIVATESESSIONREQUEST uint32 = uint32(465)
+const OpcuaNodeIdServices_ACTIVATESESSIONREQUEST_ENCODING_DEFAULTXML uint32 = uint32(466)
+const OpcuaNodeIdServices_ACTIVATESESSIONREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(467)
+const OpcuaNodeIdServices_ACTIVATESESSIONRESPONSE uint32 = uint32(468)
+const OpcuaNodeIdServices_ACTIVATESESSIONRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(469)
+const OpcuaNodeIdServices_ACTIVATESESSIONRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(470)
+const OpcuaNodeIdServices_CLOSESESSIONREQUEST uint32 = uint32(471)
+const OpcuaNodeIdServices_CLOSESESSIONREQUEST_ENCODING_DEFAULTXML uint32 = uint32(472)
+const OpcuaNodeIdServices_CLOSESESSIONREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(473)
+const OpcuaNodeIdServices_CLOSESESSIONRESPONSE uint32 = uint32(474)
+const OpcuaNodeIdServices_CLOSESESSIONRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(475)
+const OpcuaNodeIdServices_CLOSESESSIONRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(476)
+const OpcuaNodeIdServices_CANCELREQUEST uint32 = uint32(477)
+const OpcuaNodeIdServices_CANCELREQUEST_ENCODING_DEFAULTXML uint32 = uint32(478)
+const OpcuaNodeIdServices_CANCELREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(479)
+const OpcuaNodeIdServices_CANCELRESPONSE uint32 = uint32(480)
+const OpcuaNodeIdServices_CANCELRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(481)
+const OpcuaNodeIdServices_CANCELRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(482)
+const OpcuaNodeIdServices_ADDNODESRESULT uint32 = uint32(483)
+const OpcuaNodeIdServices_ADDNODESRESULT_ENCODING_DEFAULTXML uint32 = uint32(484)
+const OpcuaNodeIdServices_ADDNODESRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(485)
+const OpcuaNodeIdServices_ADDNODESREQUEST uint32 = uint32(486)
+const OpcuaNodeIdServices_ADDNODESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(487)
+const OpcuaNodeIdServices_ADDNODESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(488)
+const OpcuaNodeIdServices_ADDNODESRESPONSE uint32 = uint32(489)
+const OpcuaNodeIdServices_ADDNODESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(490)
+const OpcuaNodeIdServices_ADDNODESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(491)
+const OpcuaNodeIdServices_ADDREFERENCESREQUEST uint32 = uint32(492)
+const OpcuaNodeIdServices_ADDREFERENCESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(493)
+const OpcuaNodeIdServices_ADDREFERENCESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(494)
+const OpcuaNodeIdServices_ADDREFERENCESRESPONSE uint32 = uint32(495)
+const OpcuaNodeIdServices_ADDREFERENCESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(496)
+const OpcuaNodeIdServices_ADDREFERENCESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(497)
+const OpcuaNodeIdServices_DELETENODESREQUEST uint32 = uint32(498)
+const OpcuaNodeIdServices_DELETENODESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(499)
+const OpcuaNodeIdServices_DELETENODESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(500)
+const OpcuaNodeIdServices_DELETENODESRESPONSE uint32 = uint32(501)
+const OpcuaNodeIdServices_DELETENODESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(502)
+const OpcuaNodeIdServices_DELETENODESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(503)
+const OpcuaNodeIdServices_DELETEREFERENCESREQUEST uint32 = uint32(504)
+const OpcuaNodeIdServices_DELETEREFERENCESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(505)
+const OpcuaNodeIdServices_DELETEREFERENCESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(506)
+const OpcuaNodeIdServices_DELETEREFERENCESRESPONSE uint32 = uint32(507)
+const OpcuaNodeIdServices_DELETEREFERENCESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(508)
+const OpcuaNodeIdServices_DELETEREFERENCESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(509)
+const OpcuaNodeIdServices_BROWSEDIRECTION uint32 = uint32(510)
+const OpcuaNodeIdServices_VIEWDESCRIPTION uint32 = uint32(511)
+const OpcuaNodeIdServices_VIEWDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(512)
+const OpcuaNodeIdServices_VIEWDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(513)
+const OpcuaNodeIdServices_BROWSEDESCRIPTION uint32 = uint32(514)
+const OpcuaNodeIdServices_BROWSEDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(515)
+const OpcuaNodeIdServices_BROWSEDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(516)
+const OpcuaNodeIdServices_BROWSERESULTMASK uint32 = uint32(517)
+const OpcuaNodeIdServices_REFERENCEDESCRIPTION uint32 = uint32(518)
+const OpcuaNodeIdServices_REFERENCEDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(519)
+const OpcuaNodeIdServices_REFERENCEDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(520)
+const OpcuaNodeIdServices_CONTINUATIONPOINT uint32 = uint32(521)
+const OpcuaNodeIdServices_BROWSERESULT uint32 = uint32(522)
+const OpcuaNodeIdServices_BROWSERESULT_ENCODING_DEFAULTXML uint32 = uint32(523)
+const OpcuaNodeIdServices_BROWSERESULT_ENCODING_DEFAULTBINARY uint32 = uint32(524)
+const OpcuaNodeIdServices_BROWSEREQUEST uint32 = uint32(525)
+const OpcuaNodeIdServices_BROWSEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(526)
+const OpcuaNodeIdServices_BROWSEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(527)
+const OpcuaNodeIdServices_BROWSERESPONSE uint32 = uint32(528)
+const OpcuaNodeIdServices_BROWSERESPONSE_ENCODING_DEFAULTXML uint32 = uint32(529)
+const OpcuaNodeIdServices_BROWSERESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(530)
+const OpcuaNodeIdServices_BROWSENEXTREQUEST uint32 = uint32(531)
+const OpcuaNodeIdServices_BROWSENEXTREQUEST_ENCODING_DEFAULTXML uint32 = uint32(532)
+const OpcuaNodeIdServices_BROWSENEXTREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(533)
+const OpcuaNodeIdServices_BROWSENEXTRESPONSE uint32 = uint32(534)
+const OpcuaNodeIdServices_BROWSENEXTRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(535)
+const OpcuaNodeIdServices_BROWSENEXTRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(536)
+const OpcuaNodeIdServices_RELATIVEPATHELEMENT uint32 = uint32(537)
+const OpcuaNodeIdServices_RELATIVEPATHELEMENT_ENCODING_DEFAULTXML uint32 = uint32(538)
+const OpcuaNodeIdServices_RELATIVEPATHELEMENT_ENCODING_DEFAULTBINARY uint32 = uint32(539)
+const OpcuaNodeIdServices_RELATIVEPATH uint32 = uint32(540)
+const OpcuaNodeIdServices_RELATIVEPATH_ENCODING_DEFAULTXML uint32 = uint32(541)
+const OpcuaNodeIdServices_RELATIVEPATH_ENCODING_DEFAULTBINARY uint32 = uint32(542)
+const OpcuaNodeIdServices_BROWSEPATH uint32 = uint32(543)
+const OpcuaNodeIdServices_BROWSEPATH_ENCODING_DEFAULTXML uint32 = uint32(544)
+const OpcuaNodeIdServices_BROWSEPATH_ENCODING_DEFAULTBINARY uint32 = uint32(545)
+const OpcuaNodeIdServices_BROWSEPATHTARGET uint32 = uint32(546)
+const OpcuaNodeIdServices_BROWSEPATHTARGET_ENCODING_DEFAULTXML uint32 = uint32(547)
+const OpcuaNodeIdServices_BROWSEPATHTARGET_ENCODING_DEFAULTBINARY uint32 = uint32(548)
+const OpcuaNodeIdServices_BROWSEPATHRESULT uint32 = uint32(549)
+const OpcuaNodeIdServices_BROWSEPATHRESULT_ENCODING_DEFAULTXML uint32 = uint32(550)
+const OpcuaNodeIdServices_BROWSEPATHRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(551)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSREQUEST uint32 = uint32(552)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(553)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(554)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE uint32 = uint32(555)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(556)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(557)
+const OpcuaNodeIdServices_REGISTERNODESREQUEST uint32 = uint32(558)
+const OpcuaNodeIdServices_REGISTERNODESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(559)
+const OpcuaNodeIdServices_REGISTERNODESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(560)
+const OpcuaNodeIdServices_REGISTERNODESRESPONSE uint32 = uint32(561)
+const OpcuaNodeIdServices_REGISTERNODESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(562)
+const OpcuaNodeIdServices_REGISTERNODESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(563)
+const OpcuaNodeIdServices_UNREGISTERNODESREQUEST uint32 = uint32(564)
+const OpcuaNodeIdServices_UNREGISTERNODESREQUEST_ENCODING_DEFAULTXML uint32 = uint32(565)
+const OpcuaNodeIdServices_UNREGISTERNODESREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(566)
+const OpcuaNodeIdServices_UNREGISTERNODESRESPONSE uint32 = uint32(567)
+const OpcuaNodeIdServices_UNREGISTERNODESRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(568)
+const OpcuaNodeIdServices_UNREGISTERNODESRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(569)
+const OpcuaNodeIdServices_QUERYDATADESCRIPTION uint32 = uint32(570)
+const OpcuaNodeIdServices_QUERYDATADESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(571)
+const OpcuaNodeIdServices_QUERYDATADESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(572)
+const OpcuaNodeIdServices_NODETYPEDESCRIPTION uint32 = uint32(573)
+const OpcuaNodeIdServices_NODETYPEDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(574)
+const OpcuaNodeIdServices_NODETYPEDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(575)
+const OpcuaNodeIdServices_FILTEROPERATOR uint32 = uint32(576)
+const OpcuaNodeIdServices_QUERYDATASET uint32 = uint32(577)
+const OpcuaNodeIdServices_QUERYDATASET_ENCODING_DEFAULTXML uint32 = uint32(578)
+const OpcuaNodeIdServices_QUERYDATASET_ENCODING_DEFAULTBINARY uint32 = uint32(579)
+const OpcuaNodeIdServices_NODEREFERENCE uint32 = uint32(580)
+const OpcuaNodeIdServices_NODEREFERENCE_ENCODING_DEFAULTXML uint32 = uint32(581)
+const OpcuaNodeIdServices_NODEREFERENCE_ENCODING_DEFAULTBINARY uint32 = uint32(582)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENT uint32 = uint32(583)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENT_ENCODING_DEFAULTXML uint32 = uint32(584)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENT_ENCODING_DEFAULTBINARY uint32 = uint32(585)
+const OpcuaNodeIdServices_CONTENTFILTER uint32 = uint32(586)
+const OpcuaNodeIdServices_CONTENTFILTER_ENCODING_DEFAULTXML uint32 = uint32(587)
+const OpcuaNodeIdServices_CONTENTFILTER_ENCODING_DEFAULTBINARY uint32 = uint32(588)
+const OpcuaNodeIdServices_FILTEROPERAND uint32 = uint32(589)
+const OpcuaNodeIdServices_FILTEROPERAND_ENCODING_DEFAULTXML uint32 = uint32(590)
+const OpcuaNodeIdServices_FILTEROPERAND_ENCODING_DEFAULTBINARY uint32 = uint32(591)
+const OpcuaNodeIdServices_ELEMENTOPERAND uint32 = uint32(592)
+const OpcuaNodeIdServices_ELEMENTOPERAND_ENCODING_DEFAULTXML uint32 = uint32(593)
+const OpcuaNodeIdServices_ELEMENTOPERAND_ENCODING_DEFAULTBINARY uint32 = uint32(594)
+const OpcuaNodeIdServices_LITERALOPERAND uint32 = uint32(595)
+const OpcuaNodeIdServices_LITERALOPERAND_ENCODING_DEFAULTXML uint32 = uint32(596)
+const OpcuaNodeIdServices_LITERALOPERAND_ENCODING_DEFAULTBINARY uint32 = uint32(597)
+const OpcuaNodeIdServices_ATTRIBUTEOPERAND uint32 = uint32(598)
+const OpcuaNodeIdServices_ATTRIBUTEOPERAND_ENCODING_DEFAULTXML uint32 = uint32(599)
+const OpcuaNodeIdServices_ATTRIBUTEOPERAND_ENCODING_DEFAULTBINARY uint32 = uint32(600)
+const OpcuaNodeIdServices_SIMPLEATTRIBUTEOPERAND uint32 = uint32(601)
+const OpcuaNodeIdServices_SIMPLEATTRIBUTEOPERAND_ENCODING_DEFAULTXML uint32 = uint32(602)
+const OpcuaNodeIdServices_SIMPLEATTRIBUTEOPERAND_ENCODING_DEFAULTBINARY uint32 = uint32(603)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENTRESULT uint32 = uint32(604)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENTRESULT_ENCODING_DEFAULTXML uint32 = uint32(605)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENTRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(606)
+const OpcuaNodeIdServices_CONTENTFILTERRESULT uint32 = uint32(607)
+const OpcuaNodeIdServices_CONTENTFILTERRESULT_ENCODING_DEFAULTXML uint32 = uint32(608)
+const OpcuaNodeIdServices_CONTENTFILTERRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(609)
+const OpcuaNodeIdServices_PARSINGRESULT uint32 = uint32(610)
+const OpcuaNodeIdServices_PARSINGRESULT_ENCODING_DEFAULTXML uint32 = uint32(611)
+const OpcuaNodeIdServices_PARSINGRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(612)
+const OpcuaNodeIdServices_QUERYFIRSTREQUEST uint32 = uint32(613)
+const OpcuaNodeIdServices_QUERYFIRSTREQUEST_ENCODING_DEFAULTXML uint32 = uint32(614)
+const OpcuaNodeIdServices_QUERYFIRSTREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(615)
+const OpcuaNodeIdServices_QUERYFIRSTRESPONSE uint32 = uint32(616)
+const OpcuaNodeIdServices_QUERYFIRSTRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(617)
+const OpcuaNodeIdServices_QUERYFIRSTRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(618)
+const OpcuaNodeIdServices_QUERYNEXTREQUEST uint32 = uint32(619)
+const OpcuaNodeIdServices_QUERYNEXTREQUEST_ENCODING_DEFAULTXML uint32 = uint32(620)
+const OpcuaNodeIdServices_QUERYNEXTREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(621)
+const OpcuaNodeIdServices_QUERYNEXTRESPONSE uint32 = uint32(622)
+const OpcuaNodeIdServices_QUERYNEXTRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(623)
+const OpcuaNodeIdServices_QUERYNEXTRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(624)
+const OpcuaNodeIdServices_TIMESTAMPSTORETURN uint32 = uint32(625)
+const OpcuaNodeIdServices_READVALUEID uint32 = uint32(626)
+const OpcuaNodeIdServices_READVALUEID_ENCODING_DEFAULTXML uint32 = uint32(627)
+const OpcuaNodeIdServices_READVALUEID_ENCODING_DEFAULTBINARY uint32 = uint32(628)
+const OpcuaNodeIdServices_READREQUEST uint32 = uint32(629)
+const OpcuaNodeIdServices_READREQUEST_ENCODING_DEFAULTXML uint32 = uint32(630)
+const OpcuaNodeIdServices_READREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(631)
+const OpcuaNodeIdServices_READRESPONSE uint32 = uint32(632)
+const OpcuaNodeIdServices_READRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(633)
+const OpcuaNodeIdServices_READRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(634)
+const OpcuaNodeIdServices_HISTORYREADVALUEID uint32 = uint32(635)
+const OpcuaNodeIdServices_HISTORYREADVALUEID_ENCODING_DEFAULTXML uint32 = uint32(636)
+const OpcuaNodeIdServices_HISTORYREADVALUEID_ENCODING_DEFAULTBINARY uint32 = uint32(637)
+const OpcuaNodeIdServices_HISTORYREADRESULT uint32 = uint32(638)
+const OpcuaNodeIdServices_HISTORYREADRESULT_ENCODING_DEFAULTXML uint32 = uint32(639)
+const OpcuaNodeIdServices_HISTORYREADRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(640)
+const OpcuaNodeIdServices_HISTORYREADDETAILS uint32 = uint32(641)
+const OpcuaNodeIdServices_HISTORYREADDETAILS_ENCODING_DEFAULTXML uint32 = uint32(642)
+const OpcuaNodeIdServices_HISTORYREADDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(643)
+const OpcuaNodeIdServices_READEVENTDETAILS uint32 = uint32(644)
+const OpcuaNodeIdServices_READEVENTDETAILS_ENCODING_DEFAULTXML uint32 = uint32(645)
+const OpcuaNodeIdServices_READEVENTDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(646)
+const OpcuaNodeIdServices_READRAWMODIFIEDDETAILS uint32 = uint32(647)
+const OpcuaNodeIdServices_READRAWMODIFIEDDETAILS_ENCODING_DEFAULTXML uint32 = uint32(648)
+const OpcuaNodeIdServices_READRAWMODIFIEDDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(649)
+const OpcuaNodeIdServices_READPROCESSEDDETAILS uint32 = uint32(650)
+const OpcuaNodeIdServices_READPROCESSEDDETAILS_ENCODING_DEFAULTXML uint32 = uint32(651)
+const OpcuaNodeIdServices_READPROCESSEDDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(652)
+const OpcuaNodeIdServices_READATTIMEDETAILS uint32 = uint32(653)
+const OpcuaNodeIdServices_READATTIMEDETAILS_ENCODING_DEFAULTXML uint32 = uint32(654)
+const OpcuaNodeIdServices_READATTIMEDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(655)
+const OpcuaNodeIdServices_HISTORYDATA uint32 = uint32(656)
+const OpcuaNodeIdServices_HISTORYDATA_ENCODING_DEFAULTXML uint32 = uint32(657)
+const OpcuaNodeIdServices_HISTORYDATA_ENCODING_DEFAULTBINARY uint32 = uint32(658)
+const OpcuaNodeIdServices_HISTORYEVENT uint32 = uint32(659)
+const OpcuaNodeIdServices_HISTORYEVENT_ENCODING_DEFAULTXML uint32 = uint32(660)
+const OpcuaNodeIdServices_HISTORYEVENT_ENCODING_DEFAULTBINARY uint32 = uint32(661)
+const OpcuaNodeIdServices_HISTORYREADREQUEST uint32 = uint32(662)
+const OpcuaNodeIdServices_HISTORYREADREQUEST_ENCODING_DEFAULTXML uint32 = uint32(663)
+const OpcuaNodeIdServices_HISTORYREADREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(664)
+const OpcuaNodeIdServices_HISTORYREADRESPONSE uint32 = uint32(665)
+const OpcuaNodeIdServices_HISTORYREADRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(666)
+const OpcuaNodeIdServices_HISTORYREADRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(667)
+const OpcuaNodeIdServices_WRITEVALUE uint32 = uint32(668)
+const OpcuaNodeIdServices_WRITEVALUE_ENCODING_DEFAULTXML uint32 = uint32(669)
+const OpcuaNodeIdServices_WRITEVALUE_ENCODING_DEFAULTBINARY uint32 = uint32(670)
+const OpcuaNodeIdServices_WRITEREQUEST uint32 = uint32(671)
+const OpcuaNodeIdServices_WRITEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(672)
+const OpcuaNodeIdServices_WRITEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(673)
+const OpcuaNodeIdServices_WRITERESPONSE uint32 = uint32(674)
+const OpcuaNodeIdServices_WRITERESPONSE_ENCODING_DEFAULTXML uint32 = uint32(675)
+const OpcuaNodeIdServices_WRITERESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(676)
+const OpcuaNodeIdServices_HISTORYUPDATEDETAILS uint32 = uint32(677)
+const OpcuaNodeIdServices_HISTORYUPDATEDETAILS_ENCODING_DEFAULTXML uint32 = uint32(678)
+const OpcuaNodeIdServices_HISTORYUPDATEDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(679)
+const OpcuaNodeIdServices_UPDATEDATADETAILS uint32 = uint32(680)
+const OpcuaNodeIdServices_UPDATEDATADETAILS_ENCODING_DEFAULTXML uint32 = uint32(681)
+const OpcuaNodeIdServices_UPDATEDATADETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(682)
+const OpcuaNodeIdServices_UPDATEEVENTDETAILS uint32 = uint32(683)
+const OpcuaNodeIdServices_UPDATEEVENTDETAILS_ENCODING_DEFAULTXML uint32 = uint32(684)
+const OpcuaNodeIdServices_UPDATEEVENTDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(685)
+const OpcuaNodeIdServices_DELETERAWMODIFIEDDETAILS uint32 = uint32(686)
+const OpcuaNodeIdServices_DELETERAWMODIFIEDDETAILS_ENCODING_DEFAULTXML uint32 = uint32(687)
+const OpcuaNodeIdServices_DELETERAWMODIFIEDDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(688)
+const OpcuaNodeIdServices_DELETEATTIMEDETAILS uint32 = uint32(689)
+const OpcuaNodeIdServices_DELETEATTIMEDETAILS_ENCODING_DEFAULTXML uint32 = uint32(690)
+const OpcuaNodeIdServices_DELETEATTIMEDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(691)
+const OpcuaNodeIdServices_DELETEEVENTDETAILS uint32 = uint32(692)
+const OpcuaNodeIdServices_DELETEEVENTDETAILS_ENCODING_DEFAULTXML uint32 = uint32(693)
+const OpcuaNodeIdServices_DELETEEVENTDETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(694)
+const OpcuaNodeIdServices_HISTORYUPDATERESULT uint32 = uint32(695)
+const OpcuaNodeIdServices_HISTORYUPDATERESULT_ENCODING_DEFAULTXML uint32 = uint32(696)
+const OpcuaNodeIdServices_HISTORYUPDATERESULT_ENCODING_DEFAULTBINARY uint32 = uint32(697)
+const OpcuaNodeIdServices_HISTORYUPDATEREQUEST uint32 = uint32(698)
+const OpcuaNodeIdServices_HISTORYUPDATEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(699)
+const OpcuaNodeIdServices_HISTORYUPDATEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(700)
+const OpcuaNodeIdServices_HISTORYUPDATERESPONSE uint32 = uint32(701)
+const OpcuaNodeIdServices_HISTORYUPDATERESPONSE_ENCODING_DEFAULTXML uint32 = uint32(702)
+const OpcuaNodeIdServices_HISTORYUPDATERESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(703)
+const OpcuaNodeIdServices_CALLMETHODREQUEST uint32 = uint32(704)
+const OpcuaNodeIdServices_CALLMETHODREQUEST_ENCODING_DEFAULTXML uint32 = uint32(705)
+const OpcuaNodeIdServices_CALLMETHODREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(706)
+const OpcuaNodeIdServices_CALLMETHODRESULT uint32 = uint32(707)
+const OpcuaNodeIdServices_CALLMETHODRESULT_ENCODING_DEFAULTXML uint32 = uint32(708)
+const OpcuaNodeIdServices_CALLMETHODRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(709)
+const OpcuaNodeIdServices_CALLREQUEST uint32 = uint32(710)
+const OpcuaNodeIdServices_CALLREQUEST_ENCODING_DEFAULTXML uint32 = uint32(711)
+const OpcuaNodeIdServices_CALLREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(712)
+const OpcuaNodeIdServices_CALLRESPONSE uint32 = uint32(713)
+const OpcuaNodeIdServices_CALLRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(714)
+const OpcuaNodeIdServices_CALLRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(715)
+const OpcuaNodeIdServices_MONITORINGMODE uint32 = uint32(716)
+const OpcuaNodeIdServices_DATACHANGETRIGGER uint32 = uint32(717)
+const OpcuaNodeIdServices_DEADBANDTYPE uint32 = uint32(718)
+const OpcuaNodeIdServices_MONITORINGFILTER uint32 = uint32(719)
+const OpcuaNodeIdServices_MONITORINGFILTER_ENCODING_DEFAULTXML uint32 = uint32(720)
+const OpcuaNodeIdServices_MONITORINGFILTER_ENCODING_DEFAULTBINARY uint32 = uint32(721)
+const OpcuaNodeIdServices_DATACHANGEFILTER uint32 = uint32(722)
+const OpcuaNodeIdServices_DATACHANGEFILTER_ENCODING_DEFAULTXML uint32 = uint32(723)
+const OpcuaNodeIdServices_DATACHANGEFILTER_ENCODING_DEFAULTBINARY uint32 = uint32(724)
+const OpcuaNodeIdServices_EVENTFILTER uint32 = uint32(725)
+const OpcuaNodeIdServices_EVENTFILTER_ENCODING_DEFAULTXML uint32 = uint32(726)
+const OpcuaNodeIdServices_EVENTFILTER_ENCODING_DEFAULTBINARY uint32 = uint32(727)
+const OpcuaNodeIdServices_AGGREGATEFILTER uint32 = uint32(728)
+const OpcuaNodeIdServices_AGGREGATEFILTER_ENCODING_DEFAULTXML uint32 = uint32(729)
+const OpcuaNodeIdServices_AGGREGATEFILTER_ENCODING_DEFAULTBINARY uint32 = uint32(730)
+const OpcuaNodeIdServices_MONITORINGFILTERRESULT uint32 = uint32(731)
+const OpcuaNodeIdServices_MONITORINGFILTERRESULT_ENCODING_DEFAULTXML uint32 = uint32(732)
+const OpcuaNodeIdServices_MONITORINGFILTERRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(733)
+const OpcuaNodeIdServices_EVENTFILTERRESULT uint32 = uint32(734)
+const OpcuaNodeIdServices_EVENTFILTERRESULT_ENCODING_DEFAULTXML uint32 = uint32(735)
+const OpcuaNodeIdServices_EVENTFILTERRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(736)
+const OpcuaNodeIdServices_AGGREGATEFILTERRESULT uint32 = uint32(737)
+const OpcuaNodeIdServices_AGGREGATEFILTERRESULT_ENCODING_DEFAULTXML uint32 = uint32(738)
+const OpcuaNodeIdServices_AGGREGATEFILTERRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(739)
+const OpcuaNodeIdServices_MONITORINGPARAMETERS uint32 = uint32(740)
+const OpcuaNodeIdServices_MONITORINGPARAMETERS_ENCODING_DEFAULTXML uint32 = uint32(741)
+const OpcuaNodeIdServices_MONITORINGPARAMETERS_ENCODING_DEFAULTBINARY uint32 = uint32(742)
+const OpcuaNodeIdServices_MONITOREDITEMCREATEREQUEST uint32 = uint32(743)
+const OpcuaNodeIdServices_MONITOREDITEMCREATEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(744)
+const OpcuaNodeIdServices_MONITOREDITEMCREATEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(745)
+const OpcuaNodeIdServices_MONITOREDITEMCREATERESULT uint32 = uint32(746)
+const OpcuaNodeIdServices_MONITOREDITEMCREATERESULT_ENCODING_DEFAULTXML uint32 = uint32(747)
+const OpcuaNodeIdServices_MONITOREDITEMCREATERESULT_ENCODING_DEFAULTBINARY uint32 = uint32(748)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSREQUEST uint32 = uint32(749)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(750)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(751)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSRESPONSE uint32 = uint32(752)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(753)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(754)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYREQUEST uint32 = uint32(755)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYREQUEST_ENCODING_DEFAULTXML uint32 = uint32(756)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(757)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYRESULT uint32 = uint32(758)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYRESULT_ENCODING_DEFAULTXML uint32 = uint32(759)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(760)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSREQUEST uint32 = uint32(761)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(762)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(763)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSRESPONSE uint32 = uint32(764)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(765)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(766)
+const OpcuaNodeIdServices_SETMONITORINGMODEREQUEST uint32 = uint32(767)
+const OpcuaNodeIdServices_SETMONITORINGMODEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(768)
+const OpcuaNodeIdServices_SETMONITORINGMODEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(769)
+const OpcuaNodeIdServices_SETMONITORINGMODERESPONSE uint32 = uint32(770)
+const OpcuaNodeIdServices_SETMONITORINGMODERESPONSE_ENCODING_DEFAULTXML uint32 = uint32(771)
+const OpcuaNodeIdServices_SETMONITORINGMODERESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(772)
+const OpcuaNodeIdServices_SETTRIGGERINGREQUEST uint32 = uint32(773)
+const OpcuaNodeIdServices_SETTRIGGERINGREQUEST_ENCODING_DEFAULTXML uint32 = uint32(774)
+const OpcuaNodeIdServices_SETTRIGGERINGREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(775)
+const OpcuaNodeIdServices_SETTRIGGERINGRESPONSE uint32 = uint32(776)
+const OpcuaNodeIdServices_SETTRIGGERINGRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(777)
+const OpcuaNodeIdServices_SETTRIGGERINGRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(778)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSREQUEST uint32 = uint32(779)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(780)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(781)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSRESPONSE uint32 = uint32(782)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(783)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(784)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONREQUEST uint32 = uint32(785)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONREQUEST_ENCODING_DEFAULTXML uint32 = uint32(786)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(787)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONRESPONSE uint32 = uint32(788)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(789)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(790)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONREQUEST uint32 = uint32(791)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONREQUEST_ENCODING_DEFAULTXML uint32 = uint32(792)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(793)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONRESPONSE uint32 = uint32(794)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(795)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(796)
+const OpcuaNodeIdServices_SETPUBLISHINGMODEREQUEST uint32 = uint32(797)
+const OpcuaNodeIdServices_SETPUBLISHINGMODEREQUEST_ENCODING_DEFAULTXML uint32 = uint32(798)
+const OpcuaNodeIdServices_SETPUBLISHINGMODEREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(799)
+const OpcuaNodeIdServices_SETPUBLISHINGMODERESPONSE uint32 = uint32(800)
+const OpcuaNodeIdServices_SETPUBLISHINGMODERESPONSE_ENCODING_DEFAULTXML uint32 = uint32(801)
+const OpcuaNodeIdServices_SETPUBLISHINGMODERESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(802)
+const OpcuaNodeIdServices_NOTIFICATIONMESSAGE uint32 = uint32(803)
+const OpcuaNodeIdServices_NOTIFICATIONMESSAGE_ENCODING_DEFAULTXML uint32 = uint32(804)
+const OpcuaNodeIdServices_NOTIFICATIONMESSAGE_ENCODING_DEFAULTBINARY uint32 = uint32(805)
+const OpcuaNodeIdServices_MONITOREDITEMNOTIFICATION uint32 = uint32(806)
+const OpcuaNodeIdServices_MONITOREDITEMNOTIFICATION_ENCODING_DEFAULTXML uint32 = uint32(807)
+const OpcuaNodeIdServices_MONITOREDITEMNOTIFICATION_ENCODING_DEFAULTBINARY uint32 = uint32(808)
+const OpcuaNodeIdServices_DATACHANGENOTIFICATION uint32 = uint32(809)
+const OpcuaNodeIdServices_DATACHANGENOTIFICATION_ENCODING_DEFAULTXML uint32 = uint32(810)
+const OpcuaNodeIdServices_DATACHANGENOTIFICATION_ENCODING_DEFAULTBINARY uint32 = uint32(811)
+const OpcuaNodeIdServices_STATUSCHANGENOTIFICATION uint32 = uint32(818)
+const OpcuaNodeIdServices_STATUSCHANGENOTIFICATION_ENCODING_DEFAULTXML uint32 = uint32(819)
+const OpcuaNodeIdServices_STATUSCHANGENOTIFICATION_ENCODING_DEFAULTBINARY uint32 = uint32(820)
+const OpcuaNodeIdServices_SUBSCRIPTIONACKNOWLEDGEMENT uint32 = uint32(821)
+const OpcuaNodeIdServices_SUBSCRIPTIONACKNOWLEDGEMENT_ENCODING_DEFAULTXML uint32 = uint32(822)
+const OpcuaNodeIdServices_SUBSCRIPTIONACKNOWLEDGEMENT_ENCODING_DEFAULTBINARY uint32 = uint32(823)
+const OpcuaNodeIdServices_PUBLISHREQUEST uint32 = uint32(824)
+const OpcuaNodeIdServices_PUBLISHREQUEST_ENCODING_DEFAULTXML uint32 = uint32(825)
+const OpcuaNodeIdServices_PUBLISHREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(826)
+const OpcuaNodeIdServices_PUBLISHRESPONSE uint32 = uint32(827)
+const OpcuaNodeIdServices_PUBLISHRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(828)
+const OpcuaNodeIdServices_PUBLISHRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(829)
+const OpcuaNodeIdServices_REPUBLISHREQUEST uint32 = uint32(830)
+const OpcuaNodeIdServices_REPUBLISHREQUEST_ENCODING_DEFAULTXML uint32 = uint32(831)
+const OpcuaNodeIdServices_REPUBLISHREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(832)
+const OpcuaNodeIdServices_REPUBLISHRESPONSE uint32 = uint32(833)
+const OpcuaNodeIdServices_REPUBLISHRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(834)
+const OpcuaNodeIdServices_REPUBLISHRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(835)
+const OpcuaNodeIdServices_TRANSFERRESULT uint32 = uint32(836)
+const OpcuaNodeIdServices_TRANSFERRESULT_ENCODING_DEFAULTXML uint32 = uint32(837)
+const OpcuaNodeIdServices_TRANSFERRESULT_ENCODING_DEFAULTBINARY uint32 = uint32(838)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSREQUEST uint32 = uint32(839)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(840)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(841)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSRESPONSE uint32 = uint32(842)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(843)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(844)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSREQUEST uint32 = uint32(845)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSREQUEST_ENCODING_DEFAULTXML uint32 = uint32(846)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(847)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSRESPONSE uint32 = uint32(848)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(849)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(850)
+const OpcuaNodeIdServices_REDUNDANCYSUPPORT uint32 = uint32(851)
+const OpcuaNodeIdServices_SERVERSTATE uint32 = uint32(852)
+const OpcuaNodeIdServices_REDUNDANTSERVERDATATYPE uint32 = uint32(853)
+const OpcuaNodeIdServices_REDUNDANTSERVERDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(854)
+const OpcuaNodeIdServices_REDUNDANTSERVERDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(855)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSDATATYPE uint32 = uint32(856)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(857)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(858)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYDATATYPE uint32 = uint32(859)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(860)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(861)
+const OpcuaNodeIdServices_SERVERSTATUSDATATYPE uint32 = uint32(862)
+const OpcuaNodeIdServices_SERVERSTATUSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(863)
+const OpcuaNodeIdServices_SERVERSTATUSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(864)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSDATATYPE uint32 = uint32(865)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(866)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(867)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSDATATYPE uint32 = uint32(868)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(869)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(870)
+const OpcuaNodeIdServices_SERVICECOUNTERDATATYPE uint32 = uint32(871)
+const OpcuaNodeIdServices_SERVICECOUNTERDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(872)
+const OpcuaNodeIdServices_SERVICECOUNTERDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(873)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSDATATYPE uint32 = uint32(874)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(875)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(876)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREDATATYPE uint32 = uint32(877)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(878)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(879)
+const OpcuaNodeIdServices_RANGE uint32 = uint32(884)
+const OpcuaNodeIdServices_RANGE_ENCODING_DEFAULTXML uint32 = uint32(885)
+const OpcuaNodeIdServices_RANGE_ENCODING_DEFAULTBINARY uint32 = uint32(886)
+const OpcuaNodeIdServices_EUINFORMATION uint32 = uint32(887)
+const OpcuaNodeIdServices_EUINFORMATION_ENCODING_DEFAULTXML uint32 = uint32(888)
+const OpcuaNodeIdServices_EUINFORMATION_ENCODING_DEFAULTBINARY uint32 = uint32(889)
+const OpcuaNodeIdServices_EXCEPTIONDEVIATIONFORMAT uint32 = uint32(890)
+const OpcuaNodeIdServices_ANNOTATION uint32 = uint32(891)
+const OpcuaNodeIdServices_ANNOTATION_ENCODING_DEFAULTXML uint32 = uint32(892)
+const OpcuaNodeIdServices_ANNOTATION_ENCODING_DEFAULTBINARY uint32 = uint32(893)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICDATATYPE uint32 = uint32(894)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(895)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(896)
+const OpcuaNodeIdServices_SEMANTICCHANGESTRUCTUREDATATYPE uint32 = uint32(897)
+const OpcuaNodeIdServices_SEMANTICCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(898)
+const OpcuaNodeIdServices_SEMANTICCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(899)
+const OpcuaNodeIdServices_EVENTNOTIFICATIONLIST uint32 = uint32(914)
+const OpcuaNodeIdServices_EVENTNOTIFICATIONLIST_ENCODING_DEFAULTXML uint32 = uint32(915)
+const OpcuaNodeIdServices_EVENTNOTIFICATIONLIST_ENCODING_DEFAULTBINARY uint32 = uint32(916)
+const OpcuaNodeIdServices_EVENTFIELDLIST uint32 = uint32(917)
+const OpcuaNodeIdServices_EVENTFIELDLIST_ENCODING_DEFAULTXML uint32 = uint32(918)
+const OpcuaNodeIdServices_EVENTFIELDLIST_ENCODING_DEFAULTBINARY uint32 = uint32(919)
+const OpcuaNodeIdServices_HISTORYEVENTFIELDLIST uint32 = uint32(920)
+const OpcuaNodeIdServices_HISTORYEVENTFIELDLIST_ENCODING_DEFAULTXML uint32 = uint32(921)
+const OpcuaNodeIdServices_HISTORYEVENTFIELDLIST_ENCODING_DEFAULTBINARY uint32 = uint32(922)
+const OpcuaNodeIdServices_ISSUEDIDENTITYTOKEN uint32 = uint32(938)
+const OpcuaNodeIdServices_ISSUEDIDENTITYTOKEN_ENCODING_DEFAULTXML uint32 = uint32(939)
+const OpcuaNodeIdServices_ISSUEDIDENTITYTOKEN_ENCODING_DEFAULTBINARY uint32 = uint32(940)
+const OpcuaNodeIdServices_NOTIFICATIONDATA uint32 = uint32(945)
+const OpcuaNodeIdServices_NOTIFICATIONDATA_ENCODING_DEFAULTXML uint32 = uint32(946)
+const OpcuaNodeIdServices_NOTIFICATIONDATA_ENCODING_DEFAULTBINARY uint32 = uint32(947)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATION uint32 = uint32(948)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATION_ENCODING_DEFAULTXML uint32 = uint32(949)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATION_ENCODING_DEFAULTBINARY uint32 = uint32(950)
+const OpcuaNodeIdServices_IMAGEBMP uint32 = uint32(2000)
+const OpcuaNodeIdServices_IMAGEGIF uint32 = uint32(2001)
+const OpcuaNodeIdServices_IMAGEJPG uint32 = uint32(2002)
+const OpcuaNodeIdServices_IMAGEPNG uint32 = uint32(2003)
+const OpcuaNodeIdServices_SERVERTYPE uint32 = uint32(2004)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERARRAY uint32 = uint32(2005)
+const OpcuaNodeIdServices_SERVERTYPE_NAMESPACEARRAY uint32 = uint32(2006)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS uint32 = uint32(2007)
+const OpcuaNodeIdServices_SERVERTYPE_SERVICELEVEL uint32 = uint32(2008)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES uint32 = uint32(2009)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS uint32 = uint32(2010)
+const OpcuaNodeIdServices_SERVERTYPE_VENDORSERVERINFO uint32 = uint32(2011)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERREDUNDANCY uint32 = uint32(2012)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE uint32 = uint32(2013)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_SERVERPROFILEARRAY uint32 = uint32(2014)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_LOCALEIDARRAY uint32 = uint32(2016)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MINSUPPORTEDSAMPLERATE uint32 = uint32(2017)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MODELLINGRULES uint32 = uint32(2019)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE uint32 = uint32(2020)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY uint32 = uint32(2021)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SAMPLINGINTERVALDIAGNOSTICSARRAY uint32 = uint32(2022)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SUBSCRIPTIONDIAGNOSTICSARRAY uint32 = uint32(2023)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_ENABLEDFLAG uint32 = uint32(2025)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE uint32 = uint32(2026)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_SESSIONDIAGNOSTICSARRAY uint32 = uint32(2027)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_SESSIONSECURITYDIAGNOSTICSARRAY uint32 = uint32(2028)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE uint32 = uint32(2029)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS uint32 = uint32(2030)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS uint32 = uint32(2031)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SUBSCRIPTIONDIAGNOSTICSARRAY uint32 = uint32(2032)
+const OpcuaNodeIdServices_VENDORSERVERINFOTYPE uint32 = uint32(2033)
+const OpcuaNodeIdServices_SERVERREDUNDANCYTYPE uint32 = uint32(2034)
+const OpcuaNodeIdServices_SERVERREDUNDANCYTYPE_REDUNDANCYSUPPORT uint32 = uint32(2035)
+const OpcuaNodeIdServices_TRANSPARENTREDUNDANCYTYPE uint32 = uint32(2036)
+const OpcuaNodeIdServices_TRANSPARENTREDUNDANCYTYPE_CURRENTSERVERID uint32 = uint32(2037)
+const OpcuaNodeIdServices_TRANSPARENTREDUNDANCYTYPE_REDUNDANTSERVERARRAY uint32 = uint32(2038)
+const OpcuaNodeIdServices_NONTRANSPARENTREDUNDANCYTYPE uint32 = uint32(2039)
+const OpcuaNodeIdServices_NONTRANSPARENTREDUNDANCYTYPE_SERVERURIARRAY uint32 = uint32(2040)
+const OpcuaNodeIdServices_BASEEVENTTYPE uint32 = uint32(2041)
+const OpcuaNodeIdServices_BASEEVENTTYPE_EVENTID uint32 = uint32(2042)
+const OpcuaNodeIdServices_BASEEVENTTYPE_EVENTTYPE uint32 = uint32(2043)
+const OpcuaNodeIdServices_BASEEVENTTYPE_SOURCENODE uint32 = uint32(2044)
+const OpcuaNodeIdServices_BASEEVENTTYPE_SOURCENAME uint32 = uint32(2045)
+const OpcuaNodeIdServices_BASEEVENTTYPE_TIME uint32 = uint32(2046)
+const OpcuaNodeIdServices_BASEEVENTTYPE_RECEIVETIME uint32 = uint32(2047)
+const OpcuaNodeIdServices_BASEEVENTTYPE_MESSAGE uint32 = uint32(2050)
+const OpcuaNodeIdServices_BASEEVENTTYPE_SEVERITY uint32 = uint32(2051)
+const OpcuaNodeIdServices_AUDITEVENTTYPE uint32 = uint32(2052)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(2053)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_STATUS uint32 = uint32(2054)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_SERVERID uint32 = uint32(2055)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(2056)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(2057)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE uint32 = uint32(2058)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE uint32 = uint32(2059)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE uint32 = uint32(2060)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_CLIENTCERTIFICATE uint32 = uint32(2061)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_REQUESTTYPE uint32 = uint32(2062)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SECURITYPOLICYURI uint32 = uint32(2063)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SECURITYMODE uint32 = uint32(2065)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_REQUESTEDLIFETIME uint32 = uint32(2066)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE uint32 = uint32(2069)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_SESSIONID uint32 = uint32(2070)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE uint32 = uint32(2071)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SECURECHANNELID uint32 = uint32(2072)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_CLIENTCERTIFICATE uint32 = uint32(2073)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_REVISEDSESSIONTIMEOUT uint32 = uint32(2074)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE uint32 = uint32(2075)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_CLIENTSOFTWARECERTIFICATES uint32 = uint32(2076)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_USERIDENTITYTOKEN uint32 = uint32(2077)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE uint32 = uint32(2078)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_REQUESTHANDLE uint32 = uint32(2079)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE uint32 = uint32(2080)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_CERTIFICATE uint32 = uint32(2081)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE uint32 = uint32(2082)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_INVALIDHOSTNAME uint32 = uint32(2083)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_INVALIDURI uint32 = uint32(2084)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE uint32 = uint32(2085)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE uint32 = uint32(2086)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE uint32 = uint32(2087)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE uint32 = uint32(2088)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE uint32 = uint32(2089)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE uint32 = uint32(2090)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE uint32 = uint32(2091)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_NODESTOADD uint32 = uint32(2092)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE uint32 = uint32(2093)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_NODESTODELETE uint32 = uint32(2094)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE uint32 = uint32(2095)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_REFERENCESTOADD uint32 = uint32(2096)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE uint32 = uint32(2097)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_REFERENCESTODELETE uint32 = uint32(2098)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE uint32 = uint32(2099)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE uint32 = uint32(2100)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_INDEXRANGE uint32 = uint32(2101)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_OLDVALUE uint32 = uint32(2102)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_NEWVALUE uint32 = uint32(2103)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE uint32 = uint32(2104)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE uint32 = uint32(2127)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_METHODID uint32 = uint32(2128)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_INPUTARGUMENTS uint32 = uint32(2129)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE uint32 = uint32(2130)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE uint32 = uint32(2131)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE uint32 = uint32(2132)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE uint32 = uint32(2133)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_CHANGES uint32 = uint32(2134)
+const OpcuaNodeIdServices_SERVERVENDORCAPABILITYTYPE uint32 = uint32(2137)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE uint32 = uint32(2138)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_STARTTIME uint32 = uint32(2139)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_CURRENTTIME uint32 = uint32(2140)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_STATE uint32 = uint32(2141)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO uint32 = uint32(2142)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE uint32 = uint32(2150)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_SERVERVIEWCOUNT uint32 = uint32(2151)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_CURRENTSESSIONCOUNT uint32 = uint32(2152)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_CUMULATEDSESSIONCOUNT uint32 = uint32(2153)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_SECURITYREJECTEDSESSIONCOUNT uint32 = uint32(2154)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_REJECTEDSESSIONCOUNT uint32 = uint32(2155)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_SESSIONTIMEOUTCOUNT uint32 = uint32(2156)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_SESSIONABORTCOUNT uint32 = uint32(2157)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_PUBLISHINGINTERVALCOUNT uint32 = uint32(2159)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_CURRENTSUBSCRIPTIONCOUNT uint32 = uint32(2160)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_CUMULATEDSUBSCRIPTIONCOUNT uint32 = uint32(2161)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_SECURITYREJECTEDREQUESTSCOUNT uint32 = uint32(2162)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYTYPE_REJECTEDREQUESTSCOUNT uint32 = uint32(2163)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE uint32 = uint32(2164)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSTYPE uint32 = uint32(2165)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSTYPE_SAMPLINGINTERVAL uint32 = uint32(2166)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE uint32 = uint32(2171)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE uint32 = uint32(2172)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_SESSIONID uint32 = uint32(2173)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_SUBSCRIPTIONID uint32 = uint32(2174)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_PRIORITY uint32 = uint32(2175)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_PUBLISHINGINTERVAL uint32 = uint32(2176)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MAXKEEPALIVECOUNT uint32 = uint32(2177)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MAXNOTIFICATIONSPERPUBLISH uint32 = uint32(2179)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_PUBLISHINGENABLED uint32 = uint32(2180)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MODIFYCOUNT uint32 = uint32(2181)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_ENABLECOUNT uint32 = uint32(2182)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_DISABLECOUNT uint32 = uint32(2183)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_REPUBLISHREQUESTCOUNT uint32 = uint32(2184)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_REPUBLISHMESSAGEREQUESTCOUNT uint32 = uint32(2185)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_REPUBLISHMESSAGECOUNT uint32 = uint32(2186)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_TRANSFERREQUESTCOUNT uint32 = uint32(2187)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_TRANSFERREDTOALTCLIENTCOUNT uint32 = uint32(2188)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_TRANSFERREDTOSAMECLIENTCOUNT uint32 = uint32(2189)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_PUBLISHREQUESTCOUNT uint32 = uint32(2190)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_DATACHANGENOTIFICATIONSCOUNT uint32 = uint32(2191)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_NOTIFICATIONSCOUNT uint32 = uint32(2193)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE uint32 = uint32(2196)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE uint32 = uint32(2197)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SESSIONID uint32 = uint32(2198)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SESSIONNAME uint32 = uint32(2199)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CLIENTDESCRIPTION uint32 = uint32(2200)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SERVERURI uint32 = uint32(2201)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_ENDPOINTURL uint32 = uint32(2202)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_LOCALEIDS uint32 = uint32(2203)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_ACTUALSESSIONTIMEOUT uint32 = uint32(2204)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CLIENTCONNECTIONTIME uint32 = uint32(2205)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CLIENTLASTCONTACTTIME uint32 = uint32(2206)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CURRENTSUBSCRIPTIONSCOUNT uint32 = uint32(2207)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CURRENTMONITOREDITEMSCOUNT uint32 = uint32(2208)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CURRENTPUBLISHREQUESTSINQUEUE uint32 = uint32(2209)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_READCOUNT uint32 = uint32(2217)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_HISTORYREADCOUNT uint32 = uint32(2218)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_WRITECOUNT uint32 = uint32(2219)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_HISTORYUPDATECOUNT uint32 = uint32(2220)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CALLCOUNT uint32 = uint32(2221)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CREATEMONITOREDITEMSCOUNT uint32 = uint32(2222)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_MODIFYMONITOREDITEMSCOUNT uint32 = uint32(2223)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SETMONITORINGMODECOUNT uint32 = uint32(2224)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SETTRIGGERINGCOUNT uint32 = uint32(2225)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_DELETEMONITOREDITEMSCOUNT uint32 = uint32(2226)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_CREATESUBSCRIPTIONCOUNT uint32 = uint32(2227)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_MODIFYSUBSCRIPTIONCOUNT uint32 = uint32(2228)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_SETPUBLISHINGMODECOUNT uint32 = uint32(2229)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_PUBLISHCOUNT uint32 = uint32(2230)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_REPUBLISHCOUNT uint32 = uint32(2231)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_TRANSFERSUBSCRIPTIONSCOUNT uint32 = uint32(2232)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_DELETESUBSCRIPTIONSCOUNT uint32 = uint32(2233)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_ADDNODESCOUNT uint32 = uint32(2234)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_ADDREFERENCESCOUNT uint32 = uint32(2235)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_DELETENODESCOUNT uint32 = uint32(2236)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_DELETEREFERENCESCOUNT uint32 = uint32(2237)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_BROWSECOUNT uint32 = uint32(2238)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_BROWSENEXTCOUNT uint32 = uint32(2239)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_TRANSLATEBROWSEPATHSTONODEIDSCOUNT uint32 = uint32(2240)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_QUERYFIRSTCOUNT uint32 = uint32(2241)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_QUERYNEXTCOUNT uint32 = uint32(2242)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE uint32 = uint32(2243)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE uint32 = uint32(2244)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_SESSIONID uint32 = uint32(2245)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_CLIENTUSERIDOFSESSION uint32 = uint32(2246)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_CLIENTUSERIDHISTORY uint32 = uint32(2247)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_AUTHENTICATIONMECHANISM uint32 = uint32(2248)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_ENCODING uint32 = uint32(2249)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_TRANSPORTPROTOCOL uint32 = uint32(2250)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_SECURITYMODE uint32 = uint32(2251)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_SECURITYPOLICYURI uint32 = uint32(2252)
+const OpcuaNodeIdServices_SERVER uint32 = uint32(2253)
+const OpcuaNodeIdServices_SERVER_SERVERARRAY uint32 = uint32(2254)
+const OpcuaNodeIdServices_SERVER_NAMESPACEARRAY uint32 = uint32(2255)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS uint32 = uint32(2256)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_STARTTIME uint32 = uint32(2257)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_CURRENTTIME uint32 = uint32(2258)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_STATE uint32 = uint32(2259)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO uint32 = uint32(2260)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_PRODUCTNAME uint32 = uint32(2261)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_PRODUCTURI uint32 = uint32(2262)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_MANUFACTURERNAME uint32 = uint32(2263)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_SOFTWAREVERSION uint32 = uint32(2264)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_BUILDNUMBER uint32 = uint32(2265)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_BUILDINFO_BUILDDATE uint32 = uint32(2266)
+const OpcuaNodeIdServices_SERVER_SERVICELEVEL uint32 = uint32(2267)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES uint32 = uint32(2268)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_SERVERPROFILEARRAY uint32 = uint32(2269)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_LOCALEIDARRAY uint32 = uint32(2271)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MINSUPPORTEDSAMPLERATE uint32 = uint32(2272)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS uint32 = uint32(2274)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY uint32 = uint32(2275)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SERVERVIEWCOUNT uint32 = uint32(2276)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CURRENTSESSIONCOUNT uint32 = uint32(2277)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSESSIONCOUNT uint32 = uint32(2278)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDSESSIONCOUNT uint32 = uint32(2279)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SESSIONTIMEOUTCOUNT uint32 = uint32(2281)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SESSIONABORTCOUNT uint32 = uint32(2282)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_PUBLISHINGINTERVALCOUNT uint32 = uint32(2284)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CURRENTSUBSCRIPTIONCOUNT uint32 = uint32(2285)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSUBSCRIPTIONCOUNT uint32 = uint32(2286)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDREQUESTSCOUNT uint32 = uint32(2287)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_REJECTEDREQUESTSCOUNT uint32 = uint32(2288)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SAMPLINGINTERVALDIAGNOSTICSARRAY uint32 = uint32(2289)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SUBSCRIPTIONDIAGNOSTICSARRAY uint32 = uint32(2290)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_ENABLEDFLAG uint32 = uint32(2294)
+const OpcuaNodeIdServices_SERVER_VENDORSERVERINFO uint32 = uint32(2295)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY uint32 = uint32(2296)
+const OpcuaNodeIdServices_STATEMACHINETYPE uint32 = uint32(2299)
+const OpcuaNodeIdServices_STATETYPE uint32 = uint32(2307)
+const OpcuaNodeIdServices_STATETYPE_STATENUMBER uint32 = uint32(2308)
+const OpcuaNodeIdServices_INITIALSTATETYPE uint32 = uint32(2309)
+const OpcuaNodeIdServices_TRANSITIONTYPE uint32 = uint32(2310)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE uint32 = uint32(2311)
+const OpcuaNodeIdServices_TRANSITIONTYPE_TRANSITIONNUMBER uint32 = uint32(2312)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE uint32 = uint32(2315)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE uint32 = uint32(2318)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_STEPPED uint32 = uint32(2323)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_DEFINITION uint32 = uint32(2324)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_MAXTIMEINTERVAL uint32 = uint32(2325)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_MINTIMEINTERVAL uint32 = uint32(2326)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_EXCEPTIONDEVIATION uint32 = uint32(2327)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_EXCEPTIONDEVIATIONFORMAT uint32 = uint32(2328)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE uint32 = uint32(2330)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_ACCESSHISTORYDATACAPABILITY uint32 = uint32(2331)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_ACCESSHISTORYEVENTSCAPABILITY uint32 = uint32(2332)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_INSERTDATACAPABILITY uint32 = uint32(2334)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_REPLACEDATACAPABILITY uint32 = uint32(2335)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_UPDATEDATACAPABILITY uint32 = uint32(2336)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_DELETERAWCAPABILITY uint32 = uint32(2337)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_DELETEATTIMECAPABILITY uint32 = uint32(2338)
+const OpcuaNodeIdServices_AGGREGATEFUNCTIONTYPE uint32 = uint32(2340)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_INTERPOLATIVE uint32 = uint32(2341)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_AVERAGE uint32 = uint32(2342)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_TIMEAVERAGE uint32 = uint32(2343)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_TOTAL uint32 = uint32(2344)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MINIMUM uint32 = uint32(2346)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MAXIMUM uint32 = uint32(2347)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MINIMUMACTUALTIME uint32 = uint32(2348)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MAXIMUMACTUALTIME uint32 = uint32(2349)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_RANGE uint32 = uint32(2350)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_ANNOTATIONCOUNT uint32 = uint32(2351)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_COUNT uint32 = uint32(2352)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_NUMBEROFTRANSITIONS uint32 = uint32(2355)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_START uint32 = uint32(2357)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_END uint32 = uint32(2358)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DELTA uint32 = uint32(2359)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DURATIONGOOD uint32 = uint32(2360)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DURATIONBAD uint32 = uint32(2361)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_PERCENTGOOD uint32 = uint32(2362)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_PERCENTBAD uint32 = uint32(2363)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_WORSTQUALITY uint32 = uint32(2364)
+const OpcuaNodeIdServices_DATAITEMTYPE uint32 = uint32(2365)
+const OpcuaNodeIdServices_DATAITEMTYPE_DEFINITION uint32 = uint32(2366)
+const OpcuaNodeIdServices_DATAITEMTYPE_VALUEPRECISION uint32 = uint32(2367)
+const OpcuaNodeIdServices_ANALOGITEMTYPE uint32 = uint32(2368)
+const OpcuaNodeIdServices_ANALOGITEMTYPE_EURANGE uint32 = uint32(2369)
+const OpcuaNodeIdServices_ANALOGITEMTYPE_INSTRUMENTRANGE uint32 = uint32(2370)
+const OpcuaNodeIdServices_ANALOGITEMTYPE_ENGINEERINGUNITS uint32 = uint32(2371)
+const OpcuaNodeIdServices_DISCRETEITEMTYPE uint32 = uint32(2372)
+const OpcuaNodeIdServices_TWOSTATEDISCRETETYPE uint32 = uint32(2373)
+const OpcuaNodeIdServices_TWOSTATEDISCRETETYPE_FALSESTATE uint32 = uint32(2374)
+const OpcuaNodeIdServices_TWOSTATEDISCRETETYPE_TRUESTATE uint32 = uint32(2375)
+const OpcuaNodeIdServices_MULTISTATEDISCRETETYPE uint32 = uint32(2376)
+const OpcuaNodeIdServices_MULTISTATEDISCRETETYPE_ENUMSTRINGS uint32 = uint32(2377)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE uint32 = uint32(2378)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_INTERMEDIATERESULT uint32 = uint32(2379)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE uint32 = uint32(2380)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_CREATESESSIONID uint32 = uint32(2381)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_CREATECLIENTNAME uint32 = uint32(2382)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_INVOCATIONCREATIONTIME uint32 = uint32(2383)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTTRANSITIONTIME uint32 = uint32(2384)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODCALL uint32 = uint32(2385)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODSESSIONID uint32 = uint32(2386)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODINPUTARGUMENTS uint32 = uint32(2387)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODOUTPUTARGUMENTS uint32 = uint32(2388)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODCALLTIME uint32 = uint32(2389)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICTYPE_LASTMETHODRETURNSTATUS uint32 = uint32(2390)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE uint32 = uint32(2391)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CREATABLE uint32 = uint32(2392)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_DELETABLE uint32 = uint32(2393)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_AUTODELETE uint32 = uint32(2394)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RECYCLECOUNT uint32 = uint32(2395)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_INSTANCECOUNT uint32 = uint32(2396)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_MAXINSTANCECOUNT uint32 = uint32(2397)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_MAXRECYCLECOUNT uint32 = uint32(2398)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC uint32 = uint32(2399)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READY uint32 = uint32(2400)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READY_STATENUMBER uint32 = uint32(2401)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNING uint32 = uint32(2402)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNING_STATENUMBER uint32 = uint32(2403)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDED uint32 = uint32(2404)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDED_STATENUMBER uint32 = uint32(2405)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_HALTED uint32 = uint32(2406)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_HALTED_STATENUMBER uint32 = uint32(2407)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_HALTEDTOREADY uint32 = uint32(2408)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_HALTEDTOREADY_TRANSITIONNUMBER uint32 = uint32(2409)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READYTORUNNING uint32 = uint32(2410)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READYTORUNNING_TRANSITIONNUMBER uint32 = uint32(2411)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOHALTED uint32 = uint32(2412)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOHALTED_TRANSITIONNUMBER uint32 = uint32(2413)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOREADY uint32 = uint32(2414)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOREADY_TRANSITIONNUMBER uint32 = uint32(2415)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOSUSPENDED uint32 = uint32(2416)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RUNNINGTOSUSPENDED_TRANSITIONNUMBER uint32 = uint32(2417)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTORUNNING uint32 = uint32(2418)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTORUNNING_TRANSITIONNUMBER uint32 = uint32(2419)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTOHALTED uint32 = uint32(2420)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTOHALTED_TRANSITIONNUMBER uint32 = uint32(2421)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTOREADY uint32 = uint32(2422)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPENDEDTOREADY_TRANSITIONNUMBER uint32 = uint32(2423)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READYTOHALTED uint32 = uint32(2424)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_READYTOHALTED_TRANSITIONNUMBER uint32 = uint32(2425)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_START uint32 = uint32(2426)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_SUSPEND uint32 = uint32(2427)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RESUME uint32 = uint32(2428)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_HALT uint32 = uint32(2429)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_RESET uint32 = uint32(2430)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_REGISTERNODESCOUNT uint32 = uint32(2730)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_UNREGISTERNODESCOUNT uint32 = uint32(2731)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXBROWSECONTINUATIONPOINTS uint32 = uint32(2732)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXQUERYCONTINUATIONPOINTS uint32 = uint32(2733)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXHISTORYCONTINUATIONPOINTS uint32 = uint32(2734)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXBROWSECONTINUATIONPOINTS uint32 = uint32(2735)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXQUERYCONTINUATIONPOINTS uint32 = uint32(2736)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXHISTORYCONTINUATIONPOINTS uint32 = uint32(2737)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE uint32 = uint32(2738)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_CHANGES uint32 = uint32(2739)
+const OpcuaNodeIdServices_SERVERTYPE_AUDITING uint32 = uint32(2742)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SESSIONSDIAGNOSTICSSUMMARY uint32 = uint32(2744)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_SECURECHANNELID uint32 = uint32(2745)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_CLIENTCERTIFICATETHUMBPRINT uint32 = uint32(2746)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_CLIENTCERTIFICATETHUMBPRINT uint32 = uint32(2747)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE uint32 = uint32(2748)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_ENDPOINTURL uint32 = uint32(2749)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_ATTRIBUTEID uint32 = uint32(2750)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(2751)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_SECONDSTILLSHUTDOWN uint32 = uint32(2752)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_SHUTDOWNREASON uint32 = uint32(2753)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_AGGREGATEFUNCTIONS uint32 = uint32(2754)
+const OpcuaNodeIdServices_STATEVARIABLETYPE uint32 = uint32(2755)
+const OpcuaNodeIdServices_STATEVARIABLETYPE_ID uint32 = uint32(2756)
+const OpcuaNodeIdServices_STATEVARIABLETYPE_NAME uint32 = uint32(2757)
+const OpcuaNodeIdServices_STATEVARIABLETYPE_NUMBER uint32 = uint32(2758)
+const OpcuaNodeIdServices_STATEVARIABLETYPE_EFFECTIVEDISPLAYNAME uint32 = uint32(2759)
+const OpcuaNodeIdServices_FINITESTATEVARIABLETYPE uint32 = uint32(2760)
+const OpcuaNodeIdServices_FINITESTATEVARIABLETYPE_ID uint32 = uint32(2761)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE uint32 = uint32(2762)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE_ID uint32 = uint32(2763)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE_NAME uint32 = uint32(2764)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE_NUMBER uint32 = uint32(2765)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE_TRANSITIONTIME uint32 = uint32(2766)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE uint32 = uint32(2767)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE_ID uint32 = uint32(2768)
+const OpcuaNodeIdServices_STATEMACHINETYPE_CURRENTSTATE uint32 = uint32(2769)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION uint32 = uint32(2770)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE uint32 = uint32(2771)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_CURRENTSTATE uint32 = uint32(2772)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION uint32 = uint32(2773)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION uint32 = uint32(2774)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_FROMSTATE uint32 = uint32(2775)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TOSTATE uint32 = uint32(2776)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_OLDSTATEID uint32 = uint32(2777)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_NEWSTATEID uint32 = uint32(2778)
+const OpcuaNodeIdServices_CONDITIONTYPE uint32 = uint32(2782)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE uint32 = uint32(2787)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE uint32 = uint32(2788)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE uint32 = uint32(2789)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE uint32 = uint32(2790)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE uint32 = uint32(2803)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE uint32 = uint32(2829)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE uint32 = uint32(2830)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_PROMPT uint32 = uint32(2831)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE uint32 = uint32(2881)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE uint32 = uint32(2915)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE uint32 = uint32(2929)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVED uint32 = uint32(2930)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVED uint32 = uint32(2932)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVED uint32 = uint32(2933)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVEDTOTIMEDSHELVED uint32 = uint32(2935)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVEDTOONESHOTSHELVED uint32 = uint32(2936)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVEDTOUNSHELVED uint32 = uint32(2940)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVEDTOONESHOTSHELVED uint32 = uint32(2942)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVEDTOUNSHELVED uint32 = uint32(2943)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVEDTOTIMEDSHELVED uint32 = uint32(2945)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVE uint32 = uint32(2947)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVE uint32 = uint32(2948)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVE uint32 = uint32(2949)
+const OpcuaNodeIdServices_LIMITALARMTYPE uint32 = uint32(2955)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(2991)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_SECONDSTILLSHUTDOWN uint32 = uint32(2992)
+const OpcuaNodeIdServices_SERVER_SERVERSTATUS_SHUTDOWNREASON uint32 = uint32(2993)
+const OpcuaNodeIdServices_SERVER_AUDITING uint32 = uint32(2994)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MODELLINGRULES uint32 = uint32(2996)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_AGGREGATEFUNCTIONS uint32 = uint32(2997)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_EVENTNOTIFICATIONSCOUNT uint32 = uint32(2998)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE uint32 = uint32(2999)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_FILTER uint32 = uint32(3003)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE uint32 = uint32(3006)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE uint32 = uint32(3012)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE uint32 = uint32(3014)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_ISDELETEMODIFIED uint32 = uint32(3015)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_STARTTIME uint32 = uint32(3016)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_ENDTIME uint32 = uint32(3017)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE uint32 = uint32(3019)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_REQTIMES uint32 = uint32(3020)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_OLDVALUES uint32 = uint32(3021)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE uint32 = uint32(3022)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_EVENTIDS uint32 = uint32(3023)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_OLDVALUES uint32 = uint32(3024)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_UPDATEDNODE uint32 = uint32(3025)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_UPDATEDNODE uint32 = uint32(3026)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_UPDATEDNODE uint32 = uint32(3027)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_PERFORMINSERTREPLACE uint32 = uint32(3028)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_NEWVALUES uint32 = uint32(3029)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_OLDVALUES uint32 = uint32(3030)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_PERFORMINSERTREPLACE uint32 = uint32(3031)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_NEWVALUES uint32 = uint32(3032)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_OLDVALUES uint32 = uint32(3033)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_OLDVALUES uint32 = uint32(3034)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE uint32 = uint32(3035)
+const OpcuaNodeIdServices_EVENTTYPESFOLDER uint32 = uint32(3048)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_SOFTWARECERTIFICATES uint32 = uint32(3049)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_MAXRESPONSEMESSAGESIZE uint32 = uint32(3050)
+const OpcuaNodeIdServices_BUILDINFOTYPE uint32 = uint32(3051)
+const OpcuaNodeIdServices_BUILDINFOTYPE_PRODUCTURI uint32 = uint32(3052)
+const OpcuaNodeIdServices_BUILDINFOTYPE_MANUFACTURERNAME uint32 = uint32(3053)
+const OpcuaNodeIdServices_BUILDINFOTYPE_PRODUCTNAME uint32 = uint32(3054)
+const OpcuaNodeIdServices_BUILDINFOTYPE_SOFTWAREVERSION uint32 = uint32(3055)
+const OpcuaNodeIdServices_BUILDINFOTYPE_BUILDNUMBER uint32 = uint32(3056)
+const OpcuaNodeIdServices_BUILDINFOTYPE_BUILDDATE uint32 = uint32(3057)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSTYPE_CLIENTCERTIFICATE uint32 = uint32(3058)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATECONFIGURATION uint32 = uint32(3059)
+const OpcuaNodeIdServices_DEFAULTBINARY uint32 = uint32(3062)
+const OpcuaNodeIdServices_DEFAULTXML uint32 = uint32(3063)
+const OpcuaNodeIdServices_ALWAYSGENERATESEVENT uint32 = uint32(3065)
+const OpcuaNodeIdServices_ICON uint32 = uint32(3067)
+const OpcuaNodeIdServices_NODEVERSION uint32 = uint32(3068)
+const OpcuaNodeIdServices_LOCALTIME uint32 = uint32(3069)
+const OpcuaNodeIdServices_ALLOWNULLS uint32 = uint32(3070)
+const OpcuaNodeIdServices_ENUMVALUES uint32 = uint32(3071)
+const OpcuaNodeIdServices_INPUTARGUMENTS uint32 = uint32(3072)
+const OpcuaNodeIdServices_OUTPUTARGUMENTS uint32 = uint32(3073)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_STARTTIME uint32 = uint32(3074)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_CURRENTTIME uint32 = uint32(3075)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_STATE uint32 = uint32(3076)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO uint32 = uint32(3077)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_PRODUCTURI uint32 = uint32(3078)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_MANUFACTURERNAME uint32 = uint32(3079)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_PRODUCTNAME uint32 = uint32(3080)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_SOFTWAREVERSION uint32 = uint32(3081)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_BUILDNUMBER uint32 = uint32(3082)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_BUILDINFO_BUILDDATE uint32 = uint32(3083)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_SECONDSTILLSHUTDOWN uint32 = uint32(3084)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERSTATUS_SHUTDOWNREASON uint32 = uint32(3085)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_SERVERPROFILEARRAY uint32 = uint32(3086)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_LOCALEIDARRAY uint32 = uint32(3087)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MINSUPPORTEDSAMPLERATE uint32 = uint32(3088)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXBROWSECONTINUATIONPOINTS uint32 = uint32(3089)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXQUERYCONTINUATIONPOINTS uint32 = uint32(3090)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXHISTORYCONTINUATIONPOINTS uint32 = uint32(3091)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_SOFTWARECERTIFICATES uint32 = uint32(3092)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MODELLINGRULES uint32 = uint32(3093)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_AGGREGATEFUNCTIONS uint32 = uint32(3094)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY uint32 = uint32(3095)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SERVERVIEWCOUNT uint32 = uint32(3096)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CURRENTSESSIONCOUNT uint32 = uint32(3097)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSESSIONCOUNT uint32 = uint32(3098)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDSESSIONCOUNT uint32 = uint32(3099)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_REJECTEDSESSIONCOUNT uint32 = uint32(3100)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SESSIONTIMEOUTCOUNT uint32 = uint32(3101)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SESSIONABORTCOUNT uint32 = uint32(3102)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_PUBLISHINGINTERVALCOUNT uint32 = uint32(3104)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CURRENTSUBSCRIPTIONCOUNT uint32 = uint32(3105)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSUBSCRIPTIONCOUNT uint32 = uint32(3106)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDREQUESTSCOUNT uint32 = uint32(3107)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_REJECTEDREQUESTSCOUNT uint32 = uint32(3108)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SAMPLINGINTERVALDIAGNOSTICSARRAY uint32 = uint32(3109)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SUBSCRIPTIONDIAGNOSTICSARRAY uint32 = uint32(3110)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY uint32 = uint32(3111)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY_SESSIONDIAGNOSTICSARRAY uint32 = uint32(3112)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY_SESSIONSECURITYDIAGNOSTICSARRAY uint32 = uint32(3113)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERDIAGNOSTICS_ENABLEDFLAG uint32 = uint32(3114)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERREDUNDANCY_REDUNDANCYSUPPORT uint32 = uint32(3115)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_SERVERVIEWCOUNT uint32 = uint32(3116)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_CURRENTSESSIONCOUNT uint32 = uint32(3117)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSESSIONCOUNT uint32 = uint32(3118)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDSESSIONCOUNT uint32 = uint32(3119)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_REJECTEDSESSIONCOUNT uint32 = uint32(3120)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_SESSIONTIMEOUTCOUNT uint32 = uint32(3121)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_SESSIONABORTCOUNT uint32 = uint32(3122)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_PUBLISHINGINTERVALCOUNT uint32 = uint32(3124)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_CURRENTSUBSCRIPTIONCOUNT uint32 = uint32(3125)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_CUMULATEDSUBSCRIPTIONCOUNT uint32 = uint32(3126)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_SECURITYREJECTEDREQUESTSCOUNT uint32 = uint32(3127)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SERVERDIAGNOSTICSSUMMARY_REJECTEDREQUESTSCOUNT uint32 = uint32(3128)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SESSIONSDIAGNOSTICSSUMMARY_SESSIONDIAGNOSTICSARRAY uint32 = uint32(3129)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSTYPE_SESSIONSDIAGNOSTICSSUMMARY_SESSIONSECURITYDIAGNOSTICSARRAY uint32 = uint32(3130)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SESSIONID uint32 = uint32(3131)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SESSIONNAME uint32 = uint32(3132)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CLIENTDESCRIPTION uint32 = uint32(3133)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SERVERURI uint32 = uint32(3134)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_ENDPOINTURL uint32 = uint32(3135)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_LOCALEIDS uint32 = uint32(3136)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_ACTUALSESSIONTIMEOUT uint32 = uint32(3137)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_MAXRESPONSEMESSAGESIZE uint32 = uint32(3138)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CLIENTCONNECTIONTIME uint32 = uint32(3139)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CLIENTLASTCONTACTTIME uint32 = uint32(3140)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CURRENTSUBSCRIPTIONSCOUNT uint32 = uint32(3141)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CURRENTMONITOREDITEMSCOUNT uint32 = uint32(3142)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CURRENTPUBLISHREQUESTSINQUEUE uint32 = uint32(3143)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_READCOUNT uint32 = uint32(3151)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_HISTORYREADCOUNT uint32 = uint32(3152)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_WRITECOUNT uint32 = uint32(3153)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_HISTORYUPDATECOUNT uint32 = uint32(3154)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CALLCOUNT uint32 = uint32(3155)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CREATEMONITOREDITEMSCOUNT uint32 = uint32(3156)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_MODIFYMONITOREDITEMSCOUNT uint32 = uint32(3157)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SETMONITORINGMODECOUNT uint32 = uint32(3158)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SETTRIGGERINGCOUNT uint32 = uint32(3159)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_DELETEMONITOREDITEMSCOUNT uint32 = uint32(3160)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_CREATESUBSCRIPTIONCOUNT uint32 = uint32(3161)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_MODIFYSUBSCRIPTIONCOUNT uint32 = uint32(3162)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_SETPUBLISHINGMODECOUNT uint32 = uint32(3163)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_PUBLISHCOUNT uint32 = uint32(3164)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_REPUBLISHCOUNT uint32 = uint32(3165)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_TRANSFERSUBSCRIPTIONSCOUNT uint32 = uint32(3166)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_DELETESUBSCRIPTIONSCOUNT uint32 = uint32(3167)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_ADDNODESCOUNT uint32 = uint32(3168)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_ADDREFERENCESCOUNT uint32 = uint32(3169)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_DELETENODESCOUNT uint32 = uint32(3170)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_DELETEREFERENCESCOUNT uint32 = uint32(3171)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_BROWSECOUNT uint32 = uint32(3172)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_BROWSENEXTCOUNT uint32 = uint32(3173)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_TRANSLATEBROWSEPATHSTONODEIDSCOUNT uint32 = uint32(3174)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_QUERYFIRSTCOUNT uint32 = uint32(3175)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_QUERYNEXTCOUNT uint32 = uint32(3176)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_REGISTERNODESCOUNT uint32 = uint32(3177)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_UNREGISTERNODESCOUNT uint32 = uint32(3178)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_SESSIONID uint32 = uint32(3179)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDOFSESSION uint32 = uint32(3180)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDHISTORY uint32 = uint32(3181)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_AUTHENTICATIONMECHANISM uint32 = uint32(3182)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_ENCODING uint32 = uint32(3183)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_TRANSPORTPROTOCOL uint32 = uint32(3184)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_SECURITYMODE uint32 = uint32(3185)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_SECURITYPOLICYURI uint32 = uint32(3186)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTCERTIFICATE uint32 = uint32(3187)
+const OpcuaNodeIdServices_TRANSPARENTREDUNDANCYTYPE_REDUNDANCYSUPPORT uint32 = uint32(3188)
+const OpcuaNodeIdServices_NONTRANSPARENTREDUNDANCYTYPE_REDUNDANCYSUPPORT uint32 = uint32(3189)
+const OpcuaNodeIdServices_BASEEVENTTYPE_LOCALTIME uint32 = uint32(3190)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_EVENTID uint32 = uint32(3191)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_EVENTTYPE uint32 = uint32(3192)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_SOURCENODE uint32 = uint32(3193)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_SOURCENAME uint32 = uint32(3194)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_TIME uint32 = uint32(3195)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_RECEIVETIME uint32 = uint32(3196)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_LOCALTIME uint32 = uint32(3197)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_MESSAGE uint32 = uint32(3198)
+const OpcuaNodeIdServices_EVENTQUEUEOVERFLOWEVENTTYPE_SEVERITY uint32 = uint32(3199)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_EVENTID uint32 = uint32(3200)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_EVENTTYPE uint32 = uint32(3201)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_SOURCENODE uint32 = uint32(3202)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_SOURCENAME uint32 = uint32(3203)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_TIME uint32 = uint32(3204)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_RECEIVETIME uint32 = uint32(3205)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_LOCALTIME uint32 = uint32(3206)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_MESSAGE uint32 = uint32(3207)
+const OpcuaNodeIdServices_AUDITEVENTTYPE_SEVERITY uint32 = uint32(3208)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_EVENTID uint32 = uint32(3209)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_EVENTTYPE uint32 = uint32(3210)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_SOURCENODE uint32 = uint32(3211)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_SOURCENAME uint32 = uint32(3212)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_TIME uint32 = uint32(3213)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_RECEIVETIME uint32 = uint32(3214)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_LOCALTIME uint32 = uint32(3215)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_MESSAGE uint32 = uint32(3216)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_SEVERITY uint32 = uint32(3217)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3218)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_STATUS uint32 = uint32(3219)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_SERVERID uint32 = uint32(3220)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3221)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_CLIENTUSERID uint32 = uint32(3222)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_EVENTID uint32 = uint32(3223)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_EVENTTYPE uint32 = uint32(3224)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_SOURCENODE uint32 = uint32(3225)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_SOURCENAME uint32 = uint32(3226)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_TIME uint32 = uint32(3227)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_RECEIVETIME uint32 = uint32(3228)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_LOCALTIME uint32 = uint32(3229)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_MESSAGE uint32 = uint32(3230)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_SEVERITY uint32 = uint32(3231)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3232)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_STATUS uint32 = uint32(3233)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_SERVERID uint32 = uint32(3234)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3235)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_CLIENTUSERID uint32 = uint32(3236)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_EVENTID uint32 = uint32(3237)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_EVENTTYPE uint32 = uint32(3238)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SOURCENODE uint32 = uint32(3239)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SOURCENAME uint32 = uint32(3240)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_TIME uint32 = uint32(3241)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_RECEIVETIME uint32 = uint32(3242)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_LOCALTIME uint32 = uint32(3243)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_MESSAGE uint32 = uint32(3244)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SEVERITY uint32 = uint32(3245)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3246)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_STATUS uint32 = uint32(3247)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SERVERID uint32 = uint32(3248)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3249)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_CLIENTUSERID uint32 = uint32(3250)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_SECURECHANNELID uint32 = uint32(3251)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_EVENTID uint32 = uint32(3252)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_EVENTTYPE uint32 = uint32(3253)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_SOURCENODE uint32 = uint32(3254)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_SOURCENAME uint32 = uint32(3255)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_TIME uint32 = uint32(3256)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_RECEIVETIME uint32 = uint32(3257)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_LOCALTIME uint32 = uint32(3258)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_MESSAGE uint32 = uint32(3259)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_SEVERITY uint32 = uint32(3260)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3261)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_STATUS uint32 = uint32(3262)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_SERVERID uint32 = uint32(3263)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3264)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_CLIENTUSERID uint32 = uint32(3265)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_EVENTID uint32 = uint32(3266)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_EVENTTYPE uint32 = uint32(3267)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SOURCENODE uint32 = uint32(3268)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SOURCENAME uint32 = uint32(3269)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_TIME uint32 = uint32(3270)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_RECEIVETIME uint32 = uint32(3271)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_LOCALTIME uint32 = uint32(3272)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_MESSAGE uint32 = uint32(3273)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SEVERITY uint32 = uint32(3274)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3275)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_STATUS uint32 = uint32(3276)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SERVERID uint32 = uint32(3277)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3278)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_CLIENTUSERID uint32 = uint32(3279)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_EVENTID uint32 = uint32(3281)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_EVENTTYPE uint32 = uint32(3282)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SOURCENODE uint32 = uint32(3283)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SOURCENAME uint32 = uint32(3284)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_TIME uint32 = uint32(3285)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_RECEIVETIME uint32 = uint32(3286)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_LOCALTIME uint32 = uint32(3287)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_MESSAGE uint32 = uint32(3288)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SEVERITY uint32 = uint32(3289)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3290)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_STATUS uint32 = uint32(3291)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SERVERID uint32 = uint32(3292)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3293)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_CLIENTUSERID uint32 = uint32(3294)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SECURECHANNELID uint32 = uint32(3296)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_CLIENTCERTIFICATE uint32 = uint32(3297)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_CLIENTCERTIFICATETHUMBPRINT uint32 = uint32(3298)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_REVISEDSESSIONTIMEOUT uint32 = uint32(3299)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_EVENTID uint32 = uint32(3300)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_EVENTTYPE uint32 = uint32(3301)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SOURCENODE uint32 = uint32(3302)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SOURCENAME uint32 = uint32(3303)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_TIME uint32 = uint32(3304)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_RECEIVETIME uint32 = uint32(3305)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_LOCALTIME uint32 = uint32(3306)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_MESSAGE uint32 = uint32(3307)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SEVERITY uint32 = uint32(3308)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3309)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_STATUS uint32 = uint32(3310)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SERVERID uint32 = uint32(3311)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3312)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_CLIENTUSERID uint32 = uint32(3313)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SESSIONID uint32 = uint32(3314)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_EVENTID uint32 = uint32(3315)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_EVENTTYPE uint32 = uint32(3316)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_SOURCENODE uint32 = uint32(3317)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_SOURCENAME uint32 = uint32(3318)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_TIME uint32 = uint32(3319)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_RECEIVETIME uint32 = uint32(3320)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_LOCALTIME uint32 = uint32(3321)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_MESSAGE uint32 = uint32(3322)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_SEVERITY uint32 = uint32(3323)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3324)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_STATUS uint32 = uint32(3325)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_SERVERID uint32 = uint32(3326)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3327)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_CLIENTUSERID uint32 = uint32(3328)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_SESSIONID uint32 = uint32(3329)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_EVENTID uint32 = uint32(3330)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_EVENTTYPE uint32 = uint32(3331)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_SOURCENODE uint32 = uint32(3332)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_SOURCENAME uint32 = uint32(3333)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_TIME uint32 = uint32(3334)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_RECEIVETIME uint32 = uint32(3335)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_LOCALTIME uint32 = uint32(3336)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_MESSAGE uint32 = uint32(3337)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_SEVERITY uint32 = uint32(3338)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3339)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_STATUS uint32 = uint32(3340)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_SERVERID uint32 = uint32(3341)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3342)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3343)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_EVENTID uint32 = uint32(3344)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_EVENTTYPE uint32 = uint32(3345)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_SOURCENODE uint32 = uint32(3346)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_SOURCENAME uint32 = uint32(3347)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_TIME uint32 = uint32(3348)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_RECEIVETIME uint32 = uint32(3349)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_LOCALTIME uint32 = uint32(3350)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_MESSAGE uint32 = uint32(3351)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_SEVERITY uint32 = uint32(3352)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3353)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_STATUS uint32 = uint32(3354)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_SERVERID uint32 = uint32(3355)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3356)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_CLIENTUSERID uint32 = uint32(3357)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_CERTIFICATE uint32 = uint32(3358)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_EVENTID uint32 = uint32(3359)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_EVENTTYPE uint32 = uint32(3360)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_SOURCENODE uint32 = uint32(3361)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_SOURCENAME uint32 = uint32(3362)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_TIME uint32 = uint32(3363)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_RECEIVETIME uint32 = uint32(3364)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_LOCALTIME uint32 = uint32(3365)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_MESSAGE uint32 = uint32(3366)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_SEVERITY uint32 = uint32(3367)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3368)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_STATUS uint32 = uint32(3369)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_SERVERID uint32 = uint32(3370)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3371)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_CLIENTUSERID uint32 = uint32(3372)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_CERTIFICATE uint32 = uint32(3373)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_EVENTID uint32 = uint32(3374)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_EVENTTYPE uint32 = uint32(3375)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_SOURCENODE uint32 = uint32(3376)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_SOURCENAME uint32 = uint32(3377)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_TIME uint32 = uint32(3378)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_RECEIVETIME uint32 = uint32(3379)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_LOCALTIME uint32 = uint32(3380)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_MESSAGE uint32 = uint32(3381)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_SEVERITY uint32 = uint32(3382)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3383)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_STATUS uint32 = uint32(3384)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_SERVERID uint32 = uint32(3385)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3386)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_CLIENTUSERID uint32 = uint32(3387)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_CERTIFICATE uint32 = uint32(3388)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_EVENTID uint32 = uint32(3389)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_EVENTTYPE uint32 = uint32(3390)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_SOURCENODE uint32 = uint32(3391)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_SOURCENAME uint32 = uint32(3392)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_TIME uint32 = uint32(3393)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_RECEIVETIME uint32 = uint32(3394)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_LOCALTIME uint32 = uint32(3395)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_MESSAGE uint32 = uint32(3396)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_SEVERITY uint32 = uint32(3397)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3398)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_STATUS uint32 = uint32(3399)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_SERVERID uint32 = uint32(3400)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3401)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_CLIENTUSERID uint32 = uint32(3402)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_CERTIFICATE uint32 = uint32(3403)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_EVENTID uint32 = uint32(3404)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_EVENTTYPE uint32 = uint32(3405)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_SOURCENODE uint32 = uint32(3406)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_SOURCENAME uint32 = uint32(3407)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_TIME uint32 = uint32(3408)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_RECEIVETIME uint32 = uint32(3409)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_LOCALTIME uint32 = uint32(3410)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_MESSAGE uint32 = uint32(3411)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_SEVERITY uint32 = uint32(3412)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3413)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_STATUS uint32 = uint32(3414)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_SERVERID uint32 = uint32(3415)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3416)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_CLIENTUSERID uint32 = uint32(3417)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_CERTIFICATE uint32 = uint32(3418)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_EVENTID uint32 = uint32(3419)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_EVENTTYPE uint32 = uint32(3420)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_SOURCENODE uint32 = uint32(3421)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_SOURCENAME uint32 = uint32(3422)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_TIME uint32 = uint32(3423)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_RECEIVETIME uint32 = uint32(3424)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_LOCALTIME uint32 = uint32(3425)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_MESSAGE uint32 = uint32(3426)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_SEVERITY uint32 = uint32(3427)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3428)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_STATUS uint32 = uint32(3429)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_SERVERID uint32 = uint32(3430)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3431)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_CLIENTUSERID uint32 = uint32(3432)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_CERTIFICATE uint32 = uint32(3433)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_EVENTID uint32 = uint32(3434)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_EVENTTYPE uint32 = uint32(3435)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_SOURCENODE uint32 = uint32(3436)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_SOURCENAME uint32 = uint32(3437)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_TIME uint32 = uint32(3438)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_RECEIVETIME uint32 = uint32(3439)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_LOCALTIME uint32 = uint32(3440)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_MESSAGE uint32 = uint32(3441)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_SEVERITY uint32 = uint32(3442)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3443)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_STATUS uint32 = uint32(3444)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_SERVERID uint32 = uint32(3445)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3446)
+const OpcuaNodeIdServices_AUDITNODEMANAGEMENTEVENTTYPE_CLIENTUSERID uint32 = uint32(3447)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_EVENTID uint32 = uint32(3448)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_EVENTTYPE uint32 = uint32(3449)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_SOURCENODE uint32 = uint32(3450)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_SOURCENAME uint32 = uint32(3451)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_TIME uint32 = uint32(3452)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_RECEIVETIME uint32 = uint32(3453)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_LOCALTIME uint32 = uint32(3454)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_MESSAGE uint32 = uint32(3455)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_SEVERITY uint32 = uint32(3456)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3457)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_STATUS uint32 = uint32(3458)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_SERVERID uint32 = uint32(3459)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3460)
+const OpcuaNodeIdServices_AUDITADDNODESEVENTTYPE_CLIENTUSERID uint32 = uint32(3461)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_EVENTID uint32 = uint32(3462)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_EVENTTYPE uint32 = uint32(3463)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_SOURCENODE uint32 = uint32(3464)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_SOURCENAME uint32 = uint32(3465)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_TIME uint32 = uint32(3466)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_RECEIVETIME uint32 = uint32(3467)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_LOCALTIME uint32 = uint32(3468)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_MESSAGE uint32 = uint32(3469)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_SEVERITY uint32 = uint32(3470)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3471)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_STATUS uint32 = uint32(3472)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_SERVERID uint32 = uint32(3473)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3474)
+const OpcuaNodeIdServices_AUDITDELETENODESEVENTTYPE_CLIENTUSERID uint32 = uint32(3475)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_EVENTID uint32 = uint32(3476)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_EVENTTYPE uint32 = uint32(3477)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_SOURCENODE uint32 = uint32(3478)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_SOURCENAME uint32 = uint32(3479)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_TIME uint32 = uint32(3480)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_RECEIVETIME uint32 = uint32(3481)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_LOCALTIME uint32 = uint32(3482)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_MESSAGE uint32 = uint32(3483)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_SEVERITY uint32 = uint32(3484)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3485)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_STATUS uint32 = uint32(3486)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_SERVERID uint32 = uint32(3487)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3488)
+const OpcuaNodeIdServices_AUDITADDREFERENCESEVENTTYPE_CLIENTUSERID uint32 = uint32(3489)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_EVENTID uint32 = uint32(3490)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_EVENTTYPE uint32 = uint32(3491)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_SOURCENODE uint32 = uint32(3492)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_SOURCENAME uint32 = uint32(3493)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_TIME uint32 = uint32(3494)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_RECEIVETIME uint32 = uint32(3495)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_LOCALTIME uint32 = uint32(3496)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_MESSAGE uint32 = uint32(3497)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_SEVERITY uint32 = uint32(3498)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3499)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_STATUS uint32 = uint32(3500)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_SERVERID uint32 = uint32(3501)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3502)
+const OpcuaNodeIdServices_AUDITDELETEREFERENCESEVENTTYPE_CLIENTUSERID uint32 = uint32(3503)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_EVENTID uint32 = uint32(3504)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(3505)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(3506)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(3507)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_TIME uint32 = uint32(3508)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(3509)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(3510)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_MESSAGE uint32 = uint32(3511)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_SEVERITY uint32 = uint32(3512)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3513)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_STATUS uint32 = uint32(3514)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_SERVERID uint32 = uint32(3515)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3516)
+const OpcuaNodeIdServices_AUDITUPDATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3517)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_EVENTID uint32 = uint32(3518)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(3519)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(3520)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(3521)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_TIME uint32 = uint32(3522)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(3523)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(3524)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_MESSAGE uint32 = uint32(3525)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_SEVERITY uint32 = uint32(3526)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3527)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_STATUS uint32 = uint32(3528)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_SERVERID uint32 = uint32(3529)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3530)
+const OpcuaNodeIdServices_AUDITWRITEUPDATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3531)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_EVENTID uint32 = uint32(3532)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(3533)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(3534)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(3535)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_TIME uint32 = uint32(3536)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(3537)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(3538)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_MESSAGE uint32 = uint32(3539)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_SEVERITY uint32 = uint32(3540)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3541)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_STATUS uint32 = uint32(3542)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_SERVERID uint32 = uint32(3543)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3544)
+const OpcuaNodeIdServices_AUDITHISTORYUPDATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3545)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_EVENTID uint32 = uint32(3546)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(3547)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(3548)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(3549)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_TIME uint32 = uint32(3550)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(3551)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(3552)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_MESSAGE uint32 = uint32(3553)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_SEVERITY uint32 = uint32(3554)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3555)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_STATUS uint32 = uint32(3556)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_SERVERID uint32 = uint32(3557)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3558)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3559)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTUPDATEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3560)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_EVENTID uint32 = uint32(3561)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(3562)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(3563)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(3564)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_TIME uint32 = uint32(3565)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(3566)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(3567)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_MESSAGE uint32 = uint32(3568)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_SEVERITY uint32 = uint32(3569)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3570)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_STATUS uint32 = uint32(3571)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_SERVERID uint32 = uint32(3572)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3573)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3574)
+const OpcuaNodeIdServices_AUDITHISTORYVALUEUPDATEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3575)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_EVENTID uint32 = uint32(3576)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_EVENTTYPE uint32 = uint32(3577)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_SOURCENODE uint32 = uint32(3578)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_SOURCENAME uint32 = uint32(3579)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_TIME uint32 = uint32(3580)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_RECEIVETIME uint32 = uint32(3581)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_LOCALTIME uint32 = uint32(3582)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_MESSAGE uint32 = uint32(3583)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_SEVERITY uint32 = uint32(3584)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3585)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_STATUS uint32 = uint32(3586)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_SERVERID uint32 = uint32(3587)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3588)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_CLIENTUSERID uint32 = uint32(3589)
+const OpcuaNodeIdServices_AUDITHISTORYDELETEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3590)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_EVENTID uint32 = uint32(3591)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_EVENTTYPE uint32 = uint32(3592)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_SOURCENODE uint32 = uint32(3593)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_SOURCENAME uint32 = uint32(3594)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_TIME uint32 = uint32(3595)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_RECEIVETIME uint32 = uint32(3596)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_LOCALTIME uint32 = uint32(3597)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_MESSAGE uint32 = uint32(3598)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_SEVERITY uint32 = uint32(3599)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3600)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_STATUS uint32 = uint32(3601)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_SERVERID uint32 = uint32(3602)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3603)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_CLIENTUSERID uint32 = uint32(3604)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3605)
+const OpcuaNodeIdServices_AUDITHISTORYRAWMODIFYDELETEEVENTTYPE_UPDATEDNODE uint32 = uint32(3606)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_EVENTID uint32 = uint32(3607)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_EVENTTYPE uint32 = uint32(3608)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_SOURCENODE uint32 = uint32(3609)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_SOURCENAME uint32 = uint32(3610)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_TIME uint32 = uint32(3611)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_RECEIVETIME uint32 = uint32(3612)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_LOCALTIME uint32 = uint32(3613)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_MESSAGE uint32 = uint32(3614)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_SEVERITY uint32 = uint32(3615)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3616)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_STATUS uint32 = uint32(3617)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_SERVERID uint32 = uint32(3618)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3619)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_CLIENTUSERID uint32 = uint32(3620)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3621)
+const OpcuaNodeIdServices_AUDITHISTORYATTIMEDELETEEVENTTYPE_UPDATEDNODE uint32 = uint32(3622)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_EVENTID uint32 = uint32(3623)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_EVENTTYPE uint32 = uint32(3624)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_SOURCENODE uint32 = uint32(3625)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_SOURCENAME uint32 = uint32(3626)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_TIME uint32 = uint32(3627)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_RECEIVETIME uint32 = uint32(3628)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_LOCALTIME uint32 = uint32(3629)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_MESSAGE uint32 = uint32(3630)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_SEVERITY uint32 = uint32(3631)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3632)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_STATUS uint32 = uint32(3633)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_SERVERID uint32 = uint32(3634)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3635)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_CLIENTUSERID uint32 = uint32(3636)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_PARAMETERDATATYPEID uint32 = uint32(3637)
+const OpcuaNodeIdServices_AUDITHISTORYEVENTDELETEEVENTTYPE_UPDATEDNODE uint32 = uint32(3638)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_EVENTID uint32 = uint32(3639)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_EVENTTYPE uint32 = uint32(3640)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_SOURCENODE uint32 = uint32(3641)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_SOURCENAME uint32 = uint32(3642)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_TIME uint32 = uint32(3643)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_RECEIVETIME uint32 = uint32(3644)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_LOCALTIME uint32 = uint32(3645)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_MESSAGE uint32 = uint32(3646)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_SEVERITY uint32 = uint32(3647)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3648)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_STATUS uint32 = uint32(3649)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_SERVERID uint32 = uint32(3650)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3651)
+const OpcuaNodeIdServices_AUDITUPDATEMETHODEVENTTYPE_CLIENTUSERID uint32 = uint32(3652)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_EVENTID uint32 = uint32(3653)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_EVENTTYPE uint32 = uint32(3654)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_SOURCENODE uint32 = uint32(3655)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_SOURCENAME uint32 = uint32(3656)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_TIME uint32 = uint32(3657)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_RECEIVETIME uint32 = uint32(3658)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_LOCALTIME uint32 = uint32(3659)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_MESSAGE uint32 = uint32(3660)
+const OpcuaNodeIdServices_SYSTEMEVENTTYPE_SEVERITY uint32 = uint32(3661)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_EVENTID uint32 = uint32(3662)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_EVENTTYPE uint32 = uint32(3663)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_SOURCENODE uint32 = uint32(3664)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_SOURCENAME uint32 = uint32(3665)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_TIME uint32 = uint32(3666)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_RECEIVETIME uint32 = uint32(3667)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_LOCALTIME uint32 = uint32(3668)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_MESSAGE uint32 = uint32(3669)
+const OpcuaNodeIdServices_DEVICEFAILUREEVENTTYPE_SEVERITY uint32 = uint32(3670)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_EVENTID uint32 = uint32(3671)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_EVENTTYPE uint32 = uint32(3672)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_SOURCENODE uint32 = uint32(3673)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_SOURCENAME uint32 = uint32(3674)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_TIME uint32 = uint32(3675)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_RECEIVETIME uint32 = uint32(3676)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_LOCALTIME uint32 = uint32(3677)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_MESSAGE uint32 = uint32(3678)
+const OpcuaNodeIdServices_BASEMODELCHANGEEVENTTYPE_SEVERITY uint32 = uint32(3679)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_EVENTID uint32 = uint32(3680)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_EVENTTYPE uint32 = uint32(3681)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_SOURCENODE uint32 = uint32(3682)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_SOURCENAME uint32 = uint32(3683)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_TIME uint32 = uint32(3684)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_RECEIVETIME uint32 = uint32(3685)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_LOCALTIME uint32 = uint32(3686)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_MESSAGE uint32 = uint32(3687)
+const OpcuaNodeIdServices_GENERALMODELCHANGEEVENTTYPE_SEVERITY uint32 = uint32(3688)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_EVENTID uint32 = uint32(3689)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_EVENTTYPE uint32 = uint32(3690)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_SOURCENODE uint32 = uint32(3691)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_SOURCENAME uint32 = uint32(3692)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_TIME uint32 = uint32(3693)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_RECEIVETIME uint32 = uint32(3694)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_LOCALTIME uint32 = uint32(3695)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_MESSAGE uint32 = uint32(3696)
+const OpcuaNodeIdServices_SEMANTICCHANGEEVENTTYPE_SEVERITY uint32 = uint32(3697)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_PRODUCTURI uint32 = uint32(3698)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_MANUFACTURERNAME uint32 = uint32(3699)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_PRODUCTNAME uint32 = uint32(3700)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_SOFTWAREVERSION uint32 = uint32(3701)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_BUILDNUMBER uint32 = uint32(3702)
+const OpcuaNodeIdServices_SERVERSTATUSTYPE_BUILDINFO_BUILDDATE uint32 = uint32(3703)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_SOFTWARECERTIFICATES uint32 = uint32(3704)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SERVERDIAGNOSTICSSUMMARY_REJECTEDSESSIONCOUNT uint32 = uint32(3705)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY uint32 = uint32(3706)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY_SESSIONDIAGNOSTICSARRAY uint32 = uint32(3707)
+const OpcuaNodeIdServices_SERVER_SERVERDIAGNOSTICS_SESSIONSDIAGNOSTICSSUMMARY_SESSIONSECURITYDIAGNOSTICSARRAY uint32 = uint32(3708)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY_REDUNDANCYSUPPORT uint32 = uint32(3709)
+const OpcuaNodeIdServices_FINITESTATEVARIABLETYPE_NAME uint32 = uint32(3714)
+const OpcuaNodeIdServices_FINITESTATEVARIABLETYPE_NUMBER uint32 = uint32(3715)
+const OpcuaNodeIdServices_FINITESTATEVARIABLETYPE_EFFECTIVEDISPLAYNAME uint32 = uint32(3716)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE_NAME uint32 = uint32(3717)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE_NUMBER uint32 = uint32(3718)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE_TRANSITIONTIME uint32 = uint32(3719)
+const OpcuaNodeIdServices_STATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(3720)
+const OpcuaNodeIdServices_STATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(3721)
+const OpcuaNodeIdServices_STATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(3722)
+const OpcuaNodeIdServices_STATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3723)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(3724)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(3725)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(3726)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(3727)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(3728)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(3729)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(3730)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3731)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(3732)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(3733)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(3734)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(3735)
+const OpcuaNodeIdServices_INITIALSTATETYPE_STATENUMBER uint32 = uint32(3736)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_EVENTID uint32 = uint32(3737)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_EVENTTYPE uint32 = uint32(3738)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_SOURCENODE uint32 = uint32(3739)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_SOURCENAME uint32 = uint32(3740)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TIME uint32 = uint32(3741)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_RECEIVETIME uint32 = uint32(3742)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_LOCALTIME uint32 = uint32(3743)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_MESSAGE uint32 = uint32(3744)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_SEVERITY uint32 = uint32(3745)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_FROMSTATE_ID uint32 = uint32(3746)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_FROMSTATE_NAME uint32 = uint32(3747)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_FROMSTATE_NUMBER uint32 = uint32(3748)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_FROMSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3749)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TOSTATE_ID uint32 = uint32(3750)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TOSTATE_NAME uint32 = uint32(3751)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TOSTATE_NUMBER uint32 = uint32(3752)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TOSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3753)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION_ID uint32 = uint32(3754)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION_NAME uint32 = uint32(3755)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION_NUMBER uint32 = uint32(3756)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION_TRANSITIONTIME uint32 = uint32(3757)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_EVENTID uint32 = uint32(3758)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_EVENTTYPE uint32 = uint32(3759)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_SOURCENODE uint32 = uint32(3760)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_SOURCENAME uint32 = uint32(3761)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_TIME uint32 = uint32(3762)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_RECEIVETIME uint32 = uint32(3763)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_LOCALTIME uint32 = uint32(3764)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_MESSAGE uint32 = uint32(3765)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_SEVERITY uint32 = uint32(3766)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3767)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_STATUS uint32 = uint32(3768)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_SERVERID uint32 = uint32(3769)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3770)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_CLIENTUSERID uint32 = uint32(3771)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_METHODID uint32 = uint32(3772)
+const OpcuaNodeIdServices_AUDITUPDATESTATEEVENTTYPE_INPUTARGUMENTS uint32 = uint32(3773)
+const OpcuaNodeIdServices_ANALOGITEMTYPE_DEFINITION uint32 = uint32(3774)
+const OpcuaNodeIdServices_ANALOGITEMTYPE_VALUEPRECISION uint32 = uint32(3775)
+const OpcuaNodeIdServices_DISCRETEITEMTYPE_DEFINITION uint32 = uint32(3776)
+const OpcuaNodeIdServices_DISCRETEITEMTYPE_VALUEPRECISION uint32 = uint32(3777)
+const OpcuaNodeIdServices_TWOSTATEDISCRETETYPE_DEFINITION uint32 = uint32(3778)
+const OpcuaNodeIdServices_TWOSTATEDISCRETETYPE_VALUEPRECISION uint32 = uint32(3779)
+const OpcuaNodeIdServices_MULTISTATEDISCRETETYPE_DEFINITION uint32 = uint32(3780)
+const OpcuaNodeIdServices_MULTISTATEDISCRETETYPE_VALUEPRECISION uint32 = uint32(3781)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_EVENTID uint32 = uint32(3782)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_EVENTTYPE uint32 = uint32(3783)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_SOURCENODE uint32 = uint32(3784)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_SOURCENAME uint32 = uint32(3785)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TIME uint32 = uint32(3786)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_RECEIVETIME uint32 = uint32(3787)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_LOCALTIME uint32 = uint32(3788)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_MESSAGE uint32 = uint32(3789)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_SEVERITY uint32 = uint32(3790)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_FROMSTATE uint32 = uint32(3791)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_FROMSTATE_ID uint32 = uint32(3792)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_FROMSTATE_NAME uint32 = uint32(3793)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_FROMSTATE_NUMBER uint32 = uint32(3794)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_FROMSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3795)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TOSTATE uint32 = uint32(3796)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TOSTATE_ID uint32 = uint32(3797)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TOSTATE_NAME uint32 = uint32(3798)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TOSTATE_NUMBER uint32 = uint32(3799)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TOSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3800)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION uint32 = uint32(3801)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION_ID uint32 = uint32(3802)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION_NAME uint32 = uint32(3803)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION_NUMBER uint32 = uint32(3804)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION_TRANSITIONTIME uint32 = uint32(3805)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE uint32 = uint32(3806)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_EVENTID uint32 = uint32(3807)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(3808)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_SOURCENODE uint32 = uint32(3809)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_SOURCENAME uint32 = uint32(3810)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TIME uint32 = uint32(3811)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(3812)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_LOCALTIME uint32 = uint32(3813)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_MESSAGE uint32 = uint32(3814)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_SEVERITY uint32 = uint32(3815)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(3816)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_STATUS uint32 = uint32(3817)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_SERVERID uint32 = uint32(3818)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(3819)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(3820)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_METHODID uint32 = uint32(3821)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_INPUTARGUMENTS uint32 = uint32(3822)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_OLDSTATEID uint32 = uint32(3823)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_NEWSTATEID uint32 = uint32(3824)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION uint32 = uint32(3825)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION_ID uint32 = uint32(3826)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION_NAME uint32 = uint32(3827)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION_NUMBER uint32 = uint32(3828)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION_TRANSITIONTIME uint32 = uint32(3829)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CURRENTSTATE uint32 = uint32(3830)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(3831)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(3832)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(3833)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(3834)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION uint32 = uint32(3835)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(3836)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(3837)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(3838)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(3839)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_CREATESESSIONID uint32 = uint32(3840)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_CREATECLIENTNAME uint32 = uint32(3841)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_INVOCATIONCREATIONTIME uint32 = uint32(3842)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTTRANSITIONTIME uint32 = uint32(3843)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODCALL uint32 = uint32(3844)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODSESSIONID uint32 = uint32(3845)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODINPUTARGUMENTS uint32 = uint32(3846)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODOUTPUTARGUMENTS uint32 = uint32(3847)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODCALLTIME uint32 = uint32(3848)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODRETURNSTATUS uint32 = uint32(3849)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_FINALRESULTDATA uint32 = uint32(3850)
+const OpcuaNodeIdServices_ADDCOMMENTMETHODTYPE uint32 = uint32(3863)
+const OpcuaNodeIdServices_ADDCOMMENTMETHODTYPE_INPUTARGUMENTS uint32 = uint32(3864)
+const OpcuaNodeIdServices_CONDITIONTYPE_EVENTID uint32 = uint32(3865)
+const OpcuaNodeIdServices_CONDITIONTYPE_EVENTTYPE uint32 = uint32(3866)
+const OpcuaNodeIdServices_CONDITIONTYPE_SOURCENODE uint32 = uint32(3867)
+const OpcuaNodeIdServices_CONDITIONTYPE_SOURCENAME uint32 = uint32(3868)
+const OpcuaNodeIdServices_CONDITIONTYPE_TIME uint32 = uint32(3869)
+const OpcuaNodeIdServices_CONDITIONTYPE_RECEIVETIME uint32 = uint32(3870)
+const OpcuaNodeIdServices_CONDITIONTYPE_LOCALTIME uint32 = uint32(3871)
+const OpcuaNodeIdServices_CONDITIONTYPE_MESSAGE uint32 = uint32(3872)
+const OpcuaNodeIdServices_CONDITIONTYPE_SEVERITY uint32 = uint32(3873)
+const OpcuaNodeIdServices_CONDITIONTYPE_RETAIN uint32 = uint32(3874)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONREFRESH uint32 = uint32(3875)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(3876)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_EVENTID uint32 = uint32(3969)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_EVENTTYPE uint32 = uint32(3970)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_SOURCENODE uint32 = uint32(3971)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_SOURCENAME uint32 = uint32(3972)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_TIME uint32 = uint32(3973)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_RECEIVETIME uint32 = uint32(3974)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_LOCALTIME uint32 = uint32(3975)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_MESSAGE uint32 = uint32(3976)
+const OpcuaNodeIdServices_REFRESHSTARTEVENTTYPE_SEVERITY uint32 = uint32(3977)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_EVENTID uint32 = uint32(3978)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_EVENTTYPE uint32 = uint32(3979)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_SOURCENODE uint32 = uint32(3980)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_SOURCENAME uint32 = uint32(3981)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_TIME uint32 = uint32(3982)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_RECEIVETIME uint32 = uint32(3983)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_LOCALTIME uint32 = uint32(3984)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_MESSAGE uint32 = uint32(3985)
+const OpcuaNodeIdServices_REFRESHENDEVENTTYPE_SEVERITY uint32 = uint32(3986)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_EVENTID uint32 = uint32(3987)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_EVENTTYPE uint32 = uint32(3988)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_SOURCENODE uint32 = uint32(3989)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_SOURCENAME uint32 = uint32(3990)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_TIME uint32 = uint32(3991)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_RECEIVETIME uint32 = uint32(3992)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_LOCALTIME uint32 = uint32(3993)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_MESSAGE uint32 = uint32(3994)
+const OpcuaNodeIdServices_REFRESHREQUIREDEVENTTYPE_SEVERITY uint32 = uint32(3995)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_EVENTID uint32 = uint32(3996)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_EVENTTYPE uint32 = uint32(3997)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_SOURCENODE uint32 = uint32(3998)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_SOURCENAME uint32 = uint32(3999)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_TIME uint32 = uint32(4000)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_RECEIVETIME uint32 = uint32(4001)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_LOCALTIME uint32 = uint32(4002)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_MESSAGE uint32 = uint32(4003)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_SEVERITY uint32 = uint32(4004)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(4005)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_STATUS uint32 = uint32(4006)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_SERVERID uint32 = uint32(4007)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(4008)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_CLIENTUSERID uint32 = uint32(4009)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_METHODID uint32 = uint32(4010)
+const OpcuaNodeIdServices_AUDITCONDITIONEVENTTYPE_INPUTARGUMENTS uint32 = uint32(4011)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_EVENTID uint32 = uint32(4106)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_EVENTTYPE uint32 = uint32(4107)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_SOURCENODE uint32 = uint32(4108)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_SOURCENAME uint32 = uint32(4109)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_TIME uint32 = uint32(4110)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_RECEIVETIME uint32 = uint32(4111)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_LOCALTIME uint32 = uint32(4112)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_MESSAGE uint32 = uint32(4113)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_SEVERITY uint32 = uint32(4114)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(4115)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_STATUS uint32 = uint32(4116)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_SERVERID uint32 = uint32(4117)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(4118)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_CLIENTUSERID uint32 = uint32(4119)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_METHODID uint32 = uint32(4120)
+const OpcuaNodeIdServices_AUDITCONDITIONENABLEEVENTTYPE_INPUTARGUMENTS uint32 = uint32(4121)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_EVENTID uint32 = uint32(4170)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_EVENTTYPE uint32 = uint32(4171)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_SOURCENODE uint32 = uint32(4172)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_SOURCENAME uint32 = uint32(4173)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_TIME uint32 = uint32(4174)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_RECEIVETIME uint32 = uint32(4175)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_LOCALTIME uint32 = uint32(4176)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_MESSAGE uint32 = uint32(4177)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_SEVERITY uint32 = uint32(4178)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(4179)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_STATUS uint32 = uint32(4180)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_SERVERID uint32 = uint32(4181)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(4182)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_CLIENTUSERID uint32 = uint32(4183)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_METHODID uint32 = uint32(4184)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_INPUTARGUMENTS uint32 = uint32(4185)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_EVENTID uint32 = uint32(4188)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_EVENTTYPE uint32 = uint32(4189)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_SOURCENODE uint32 = uint32(4190)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_SOURCENAME uint32 = uint32(4191)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_TIME uint32 = uint32(4192)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_RECEIVETIME uint32 = uint32(4193)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_LOCALTIME uint32 = uint32(4194)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_MESSAGE uint32 = uint32(4195)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_SEVERITY uint32 = uint32(4196)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_RETAIN uint32 = uint32(4197)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONREFRESH uint32 = uint32(4198)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(4199)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_EVENTID uint32 = uint32(5113)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_EVENTTYPE uint32 = uint32(5114)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_SOURCENODE uint32 = uint32(5115)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_SOURCENAME uint32 = uint32(5116)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_TIME uint32 = uint32(5117)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_RECEIVETIME uint32 = uint32(5118)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_LOCALTIME uint32 = uint32(5119)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_MESSAGE uint32 = uint32(5120)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_SEVERITY uint32 = uint32(5121)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_RETAIN uint32 = uint32(5122)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONREFRESH uint32 = uint32(5123)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(5124)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_EVENTID uint32 = uint32(5540)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_EVENTTYPE uint32 = uint32(5541)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SOURCENODE uint32 = uint32(5542)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SOURCENAME uint32 = uint32(5543)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_TIME uint32 = uint32(5544)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_RECEIVETIME uint32 = uint32(5545)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LOCALTIME uint32 = uint32(5546)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_MESSAGE uint32 = uint32(5547)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SEVERITY uint32 = uint32(5548)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_RETAIN uint32 = uint32(5549)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONREFRESH uint32 = uint32(5550)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(5551)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_CURRENTSTATE uint32 = uint32(6088)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(6089)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(6090)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(6091)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(6092)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION uint32 = uint32(6093)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(6094)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(6095)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(6096)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(6097)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVED_STATENUMBER uint32 = uint32(6098)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVED_STATENUMBER uint32 = uint32(6100)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVED_STATENUMBER uint32 = uint32(6101)
+const OpcuaNodeIdServices_TIMEDSHELVEMETHODTYPE uint32 = uint32(6102)
+const OpcuaNodeIdServices_TIMEDSHELVEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(6103)
+const OpcuaNodeIdServices_LIMITALARMTYPE_EVENTID uint32 = uint32(6116)
+const OpcuaNodeIdServices_LIMITALARMTYPE_EVENTTYPE uint32 = uint32(6117)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SOURCENODE uint32 = uint32(6118)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SOURCENAME uint32 = uint32(6119)
+const OpcuaNodeIdServices_LIMITALARMTYPE_TIME uint32 = uint32(6120)
+const OpcuaNodeIdServices_LIMITALARMTYPE_RECEIVETIME uint32 = uint32(6121)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LOCALTIME uint32 = uint32(6122)
+const OpcuaNodeIdServices_LIMITALARMTYPE_MESSAGE uint32 = uint32(6123)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SEVERITY uint32 = uint32(6124)
+const OpcuaNodeIdServices_LIMITALARMTYPE_RETAIN uint32 = uint32(6125)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONREFRESH uint32 = uint32(6126)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(6127)
+const OpcuaNodeIdServices_IDTYPE_ENUMSTRINGS uint32 = uint32(7591)
+const OpcuaNodeIdServices_ENUMVALUETYPE uint32 = uint32(7594)
+const OpcuaNodeIdServices_MESSAGESECURITYMODE_ENUMSTRINGS uint32 = uint32(7595)
+const OpcuaNodeIdServices_USERTOKENTYPE_ENUMSTRINGS uint32 = uint32(7596)
+const OpcuaNodeIdServices_APPLICATIONTYPE_ENUMSTRINGS uint32 = uint32(7597)
+const OpcuaNodeIdServices_SECURITYTOKENREQUESTTYPE_ENUMSTRINGS uint32 = uint32(7598)
+const OpcuaNodeIdServices_BROWSEDIRECTION_ENUMSTRINGS uint32 = uint32(7603)
+const OpcuaNodeIdServices_FILTEROPERATOR_ENUMSTRINGS uint32 = uint32(7605)
+const OpcuaNodeIdServices_TIMESTAMPSTORETURN_ENUMSTRINGS uint32 = uint32(7606)
+const OpcuaNodeIdServices_MONITORINGMODE_ENUMSTRINGS uint32 = uint32(7608)
+const OpcuaNodeIdServices_DATACHANGETRIGGER_ENUMSTRINGS uint32 = uint32(7609)
+const OpcuaNodeIdServices_DEADBANDTYPE_ENUMSTRINGS uint32 = uint32(7610)
+const OpcuaNodeIdServices_REDUNDANCYSUPPORT_ENUMSTRINGS uint32 = uint32(7611)
+const OpcuaNodeIdServices_SERVERSTATE_ENUMSTRINGS uint32 = uint32(7612)
+const OpcuaNodeIdServices_EXCEPTIONDEVIATIONFORMAT_ENUMSTRINGS uint32 = uint32(7614)
+const OpcuaNodeIdServices_ENUMVALUETYPE_ENCODING_DEFAULTXML uint32 = uint32(7616)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA uint32 = uint32(7617)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEVERSION uint32 = uint32(7618)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_NAMESPACEURI uint32 = uint32(7619)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ARGUMENT uint32 = uint32(7650)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ARGUMENT_DATATYPEVERSION uint32 = uint32(7651)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ARGUMENT_DICTIONARYFRAGMENT uint32 = uint32(7652)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMVALUETYPE uint32 = uint32(7656)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMVALUETYPE_DATATYPEVERSION uint32 = uint32(7657)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMVALUETYPE_DICTIONARYFRAGMENT uint32 = uint32(7658)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STATUSRESULT uint32 = uint32(7659)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STATUSRESULT_DATATYPEVERSION uint32 = uint32(7660)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STATUSRESULT_DICTIONARYFRAGMENT uint32 = uint32(7661)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERTOKENPOLICY uint32 = uint32(7662)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERTOKENPOLICY_DATATYPEVERSION uint32 = uint32(7663)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERTOKENPOLICY_DICTIONARYFRAGMENT uint32 = uint32(7664)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_APPLICATIONDESCRIPTION uint32 = uint32(7665)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_APPLICATIONDESCRIPTION_DATATYPEVERSION uint32 = uint32(7666)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_APPLICATIONDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(7667)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTDESCRIPTION uint32 = uint32(7668)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTDESCRIPTION_DATATYPEVERSION uint32 = uint32(7669)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(7670)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERIDENTITYTOKEN uint32 = uint32(7671)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(7672)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(7673)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANONYMOUSIDENTITYTOKEN uint32 = uint32(7674)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANONYMOUSIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(7675)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANONYMOUSIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(7676)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERNAMEIDENTITYTOKEN uint32 = uint32(7677)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERNAMEIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(7678)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_USERNAMEIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(7679)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_X509IDENTITYTOKEN uint32 = uint32(7680)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_X509IDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(7681)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_X509IDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(7682)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ISSUEDIDENTITYTOKEN uint32 = uint32(7683)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ISSUEDIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(7684)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ISSUEDIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(7685)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTCONFIGURATION uint32 = uint32(7686)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTCONFIGURATION_DATATYPEVERSION uint32 = uint32(7687)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(7688)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BUILDINFO uint32 = uint32(7692)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BUILDINFO_DATATYPEVERSION uint32 = uint32(7693)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BUILDINFO_DICTIONARYFRAGMENT uint32 = uint32(7694)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIGNEDSOFTWARECERTIFICATE uint32 = uint32(7698)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIGNEDSOFTWARECERTIFICATE_DATATYPEVERSION uint32 = uint32(7699)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIGNEDSOFTWARECERTIFICATE_DICTIONARYFRAGMENT uint32 = uint32(7700)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDNODESITEM uint32 = uint32(7728)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDNODESITEM_DATATYPEVERSION uint32 = uint32(7729)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDNODESITEM_DICTIONARYFRAGMENT uint32 = uint32(7730)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDREFERENCESITEM uint32 = uint32(7731)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDREFERENCESITEM_DATATYPEVERSION uint32 = uint32(7732)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDREFERENCESITEM_DICTIONARYFRAGMENT uint32 = uint32(7733)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETENODESITEM uint32 = uint32(7734)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETENODESITEM_DATATYPEVERSION uint32 = uint32(7735)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETENODESITEM_DICTIONARYFRAGMENT uint32 = uint32(7736)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETEREFERENCESITEM uint32 = uint32(7737)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETEREFERENCESITEM_DATATYPEVERSION uint32 = uint32(7738)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DELETEREFERENCESITEM_DICTIONARYFRAGMENT uint32 = uint32(7739)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REGISTEREDSERVER uint32 = uint32(7782)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REGISTEREDSERVER_DATATYPEVERSION uint32 = uint32(7783)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REGISTEREDSERVER_DICTIONARYFRAGMENT uint32 = uint32(7784)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTERELEMENT uint32 = uint32(7929)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTERELEMENT_DATATYPEVERSION uint32 = uint32(7930)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTERELEMENT_DICTIONARYFRAGMENT uint32 = uint32(7931)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTER uint32 = uint32(7932)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTER_DATATYPEVERSION uint32 = uint32(7933)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONTENTFILTER_DICTIONARYFRAGMENT uint32 = uint32(7934)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FILTEROPERAND uint32 = uint32(7935)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FILTEROPERAND_DATATYPEVERSION uint32 = uint32(7936)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FILTEROPERAND_DICTIONARYFRAGMENT uint32 = uint32(7937)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ELEMENTOPERAND uint32 = uint32(7938)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ELEMENTOPERAND_DATATYPEVERSION uint32 = uint32(7939)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ELEMENTOPERAND_DICTIONARYFRAGMENT uint32 = uint32(7940)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_LITERALOPERAND uint32 = uint32(7941)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_LITERALOPERAND_DATATYPEVERSION uint32 = uint32(7942)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_LITERALOPERAND_DICTIONARYFRAGMENT uint32 = uint32(7943)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ATTRIBUTEOPERAND uint32 = uint32(7944)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ATTRIBUTEOPERAND_DATATYPEVERSION uint32 = uint32(7945)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ATTRIBUTEOPERAND_DICTIONARYFRAGMENT uint32 = uint32(7946)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLEATTRIBUTEOPERAND uint32 = uint32(7947)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLEATTRIBUTEOPERAND_DATATYPEVERSION uint32 = uint32(7948)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLEATTRIBUTEOPERAND_DICTIONARYFRAGMENT uint32 = uint32(7949)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENT uint32 = uint32(8004)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENT_DATATYPEVERSION uint32 = uint32(8005)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENT_DICTIONARYFRAGMENT uint32 = uint32(8006)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MONITORINGFILTER uint32 = uint32(8067)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MONITORINGFILTER_DATATYPEVERSION uint32 = uint32(8068)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MONITORINGFILTER_DICTIONARYFRAGMENT uint32 = uint32(8069)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EVENTFILTER uint32 = uint32(8073)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EVENTFILTER_DATATYPEVERSION uint32 = uint32(8074)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EVENTFILTER_DICTIONARYFRAGMENT uint32 = uint32(8075)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AGGREGATECONFIGURATION uint32 = uint32(8076)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AGGREGATECONFIGURATION_DATATYPEVERSION uint32 = uint32(8077)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AGGREGATECONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(8078)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENTFIELDLIST uint32 = uint32(8172)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENTFIELDLIST_DATATYPEVERSION uint32 = uint32(8173)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_HISTORYEVENTFIELDLIST_DICTIONARYFRAGMENT uint32 = uint32(8174)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REDUNDANTSERVERDATATYPE uint32 = uint32(8208)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REDUNDANTSERVERDATATYPE_DATATYPEVERSION uint32 = uint32(8209)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_REDUNDANTSERVERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8210)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE uint32 = uint32(8211)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8212)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8213)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE uint32 = uint32(8214)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE_DATATYPEVERSION uint32 = uint32(8215)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8216)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERSTATUSDATATYPE uint32 = uint32(8217)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERSTATUSDATATYPE_DATATYPEVERSION uint32 = uint32(8218)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERSTATUSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8219)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONDIAGNOSTICSDATATYPE uint32 = uint32(8220)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8221)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8222)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE uint32 = uint32(8223)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8224)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8225)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVICECOUNTERDATATYPE uint32 = uint32(8226)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVICECOUNTERDATATYPE_DATATYPEVERSION uint32 = uint32(8227)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVICECOUNTERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8228)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE uint32 = uint32(8229)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8230)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8231)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MODELCHANGESTRUCTUREDATATYPE uint32 = uint32(8232)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MODELCHANGESTRUCTUREDATATYPE_DATATYPEVERSION uint32 = uint32(8233)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MODELCHANGESTRUCTUREDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8234)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE uint32 = uint32(8235)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE_DATATYPEVERSION uint32 = uint32(8236)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8237)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RANGE uint32 = uint32(8238)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RANGE_DATATYPEVERSION uint32 = uint32(8239)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RANGE_DICTIONARYFRAGMENT uint32 = uint32(8240)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EUINFORMATION uint32 = uint32(8241)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EUINFORMATION_DATATYPEVERSION uint32 = uint32(8242)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EUINFORMATION_DICTIONARYFRAGMENT uint32 = uint32(8243)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANNOTATION uint32 = uint32(8244)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANNOTATION_DATATYPEVERSION uint32 = uint32(8245)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ANNOTATION_DICTIONARYFRAGMENT uint32 = uint32(8246)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PROGRAMDIAGNOSTICDATATYPE uint32 = uint32(8247)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PROGRAMDIAGNOSTICDATATYPE_DATATYPEVERSION uint32 = uint32(8248)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PROGRAMDIAGNOSTICDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8249)
+const OpcuaNodeIdServices_ENUMVALUETYPE_ENCODING_DEFAULTBINARY uint32 = uint32(8251)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA uint32 = uint32(8252)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEVERSION uint32 = uint32(8253)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_NAMESPACEURI uint32 = uint32(8254)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ARGUMENT uint32 = uint32(8285)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ARGUMENT_DATATYPEVERSION uint32 = uint32(8286)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ARGUMENT_DICTIONARYFRAGMENT uint32 = uint32(8287)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMVALUETYPE uint32 = uint32(8291)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMVALUETYPE_DATATYPEVERSION uint32 = uint32(8292)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMVALUETYPE_DICTIONARYFRAGMENT uint32 = uint32(8293)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STATUSRESULT uint32 = uint32(8294)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STATUSRESULT_DATATYPEVERSION uint32 = uint32(8295)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STATUSRESULT_DICTIONARYFRAGMENT uint32 = uint32(8296)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERTOKENPOLICY uint32 = uint32(8297)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERTOKENPOLICY_DATATYPEVERSION uint32 = uint32(8298)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERTOKENPOLICY_DICTIONARYFRAGMENT uint32 = uint32(8299)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_APPLICATIONDESCRIPTION uint32 = uint32(8300)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_APPLICATIONDESCRIPTION_DATATYPEVERSION uint32 = uint32(8301)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_APPLICATIONDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(8302)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTDESCRIPTION uint32 = uint32(8303)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTDESCRIPTION_DATATYPEVERSION uint32 = uint32(8304)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(8305)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERIDENTITYTOKEN uint32 = uint32(8306)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(8307)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(8308)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANONYMOUSIDENTITYTOKEN uint32 = uint32(8309)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANONYMOUSIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(8310)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANONYMOUSIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(8311)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERNAMEIDENTITYTOKEN uint32 = uint32(8312)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERNAMEIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(8313)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_USERNAMEIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(8314)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_X509IDENTITYTOKEN uint32 = uint32(8315)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_X509IDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(8316)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_X509IDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(8317)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ISSUEDIDENTITYTOKEN uint32 = uint32(8318)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ISSUEDIDENTITYTOKEN_DATATYPEVERSION uint32 = uint32(8319)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ISSUEDIDENTITYTOKEN_DICTIONARYFRAGMENT uint32 = uint32(8320)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTCONFIGURATION uint32 = uint32(8321)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTCONFIGURATION_DATATYPEVERSION uint32 = uint32(8322)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(8323)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BUILDINFO uint32 = uint32(8327)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BUILDINFO_DATATYPEVERSION uint32 = uint32(8328)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BUILDINFO_DICTIONARYFRAGMENT uint32 = uint32(8329)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIGNEDSOFTWARECERTIFICATE uint32 = uint32(8333)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIGNEDSOFTWARECERTIFICATE_DATATYPEVERSION uint32 = uint32(8334)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIGNEDSOFTWARECERTIFICATE_DICTIONARYFRAGMENT uint32 = uint32(8335)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDNODESITEM uint32 = uint32(8363)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDNODESITEM_DATATYPEVERSION uint32 = uint32(8364)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDNODESITEM_DICTIONARYFRAGMENT uint32 = uint32(8365)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDREFERENCESITEM uint32 = uint32(8366)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDREFERENCESITEM_DATATYPEVERSION uint32 = uint32(8367)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDREFERENCESITEM_DICTIONARYFRAGMENT uint32 = uint32(8368)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETENODESITEM uint32 = uint32(8369)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETENODESITEM_DATATYPEVERSION uint32 = uint32(8370)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETENODESITEM_DICTIONARYFRAGMENT uint32 = uint32(8371)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETEREFERENCESITEM uint32 = uint32(8372)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETEREFERENCESITEM_DATATYPEVERSION uint32 = uint32(8373)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DELETEREFERENCESITEM_DICTIONARYFRAGMENT uint32 = uint32(8374)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REGISTEREDSERVER uint32 = uint32(8417)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REGISTEREDSERVER_DATATYPEVERSION uint32 = uint32(8418)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REGISTEREDSERVER_DICTIONARYFRAGMENT uint32 = uint32(8419)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTERELEMENT uint32 = uint32(8564)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTERELEMENT_DATATYPEVERSION uint32 = uint32(8565)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTERELEMENT_DICTIONARYFRAGMENT uint32 = uint32(8566)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTER uint32 = uint32(8567)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTER_DATATYPEVERSION uint32 = uint32(8568)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONTENTFILTER_DICTIONARYFRAGMENT uint32 = uint32(8569)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FILTEROPERAND uint32 = uint32(8570)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FILTEROPERAND_DATATYPEVERSION uint32 = uint32(8571)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FILTEROPERAND_DICTIONARYFRAGMENT uint32 = uint32(8572)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ELEMENTOPERAND uint32 = uint32(8573)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ELEMENTOPERAND_DATATYPEVERSION uint32 = uint32(8574)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ELEMENTOPERAND_DICTIONARYFRAGMENT uint32 = uint32(8575)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_LITERALOPERAND uint32 = uint32(8576)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_LITERALOPERAND_DATATYPEVERSION uint32 = uint32(8577)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_LITERALOPERAND_DICTIONARYFRAGMENT uint32 = uint32(8578)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ATTRIBUTEOPERAND uint32 = uint32(8579)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ATTRIBUTEOPERAND_DATATYPEVERSION uint32 = uint32(8580)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ATTRIBUTEOPERAND_DICTIONARYFRAGMENT uint32 = uint32(8581)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLEATTRIBUTEOPERAND uint32 = uint32(8582)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLEATTRIBUTEOPERAND_DATATYPEVERSION uint32 = uint32(8583)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLEATTRIBUTEOPERAND_DICTIONARYFRAGMENT uint32 = uint32(8584)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENT uint32 = uint32(8639)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENT_DATATYPEVERSION uint32 = uint32(8640)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENT_DICTIONARYFRAGMENT uint32 = uint32(8641)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MONITORINGFILTER uint32 = uint32(8702)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MONITORINGFILTER_DATATYPEVERSION uint32 = uint32(8703)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MONITORINGFILTER_DICTIONARYFRAGMENT uint32 = uint32(8704)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EVENTFILTER uint32 = uint32(8708)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EVENTFILTER_DATATYPEVERSION uint32 = uint32(8709)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EVENTFILTER_DICTIONARYFRAGMENT uint32 = uint32(8710)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AGGREGATECONFIGURATION uint32 = uint32(8711)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AGGREGATECONFIGURATION_DATATYPEVERSION uint32 = uint32(8712)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AGGREGATECONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(8713)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENTFIELDLIST uint32 = uint32(8807)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENTFIELDLIST_DATATYPEVERSION uint32 = uint32(8808)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_HISTORYEVENTFIELDLIST_DICTIONARYFRAGMENT uint32 = uint32(8809)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REDUNDANTSERVERDATATYPE uint32 = uint32(8843)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REDUNDANTSERVERDATATYPE_DATATYPEVERSION uint32 = uint32(8844)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_REDUNDANTSERVERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8845)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE uint32 = uint32(8846)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8847)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8848)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE uint32 = uint32(8849)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE_DATATYPEVERSION uint32 = uint32(8850)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERDIAGNOSTICSSUMMARYDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8851)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERSTATUSDATATYPE uint32 = uint32(8852)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERSTATUSDATATYPE_DATATYPEVERSION uint32 = uint32(8853)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERSTATUSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8854)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONDIAGNOSTICSDATATYPE uint32 = uint32(8855)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8856)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8857)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE uint32 = uint32(8858)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8859)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SESSIONSECURITYDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8860)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVICECOUNTERDATATYPE uint32 = uint32(8861)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVICECOUNTERDATATYPE_DATATYPEVERSION uint32 = uint32(8862)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVICECOUNTERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8863)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE uint32 = uint32(8864)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE_DATATYPEVERSION uint32 = uint32(8865)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIPTIONDIAGNOSTICSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8866)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MODELCHANGESTRUCTUREDATATYPE uint32 = uint32(8867)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MODELCHANGESTRUCTUREDATATYPE_DATATYPEVERSION uint32 = uint32(8868)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MODELCHANGESTRUCTUREDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8869)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE uint32 = uint32(8870)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE_DATATYPEVERSION uint32 = uint32(8871)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SEMANTICCHANGESTRUCTUREDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8872)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RANGE uint32 = uint32(8873)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RANGE_DATATYPEVERSION uint32 = uint32(8874)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RANGE_DICTIONARYFRAGMENT uint32 = uint32(8875)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EUINFORMATION uint32 = uint32(8876)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EUINFORMATION_DATATYPEVERSION uint32 = uint32(8877)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EUINFORMATION_DICTIONARYFRAGMENT uint32 = uint32(8878)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANNOTATION uint32 = uint32(8879)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANNOTATION_DATATYPEVERSION uint32 = uint32(8880)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ANNOTATION_DICTIONARYFRAGMENT uint32 = uint32(8881)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PROGRAMDIAGNOSTICDATATYPE uint32 = uint32(8882)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PROGRAMDIAGNOSTICDATATYPE_DATATYPEVERSION uint32 = uint32(8883)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PROGRAMDIAGNOSTICDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8884)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MAXLIFETIMECOUNT uint32 = uint32(8888)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_LATEPUBLISHREQUESTCOUNT uint32 = uint32(8889)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_CURRENTKEEPALIVECOUNT uint32 = uint32(8890)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_CURRENTLIFETIMECOUNT uint32 = uint32(8891)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_UNACKNOWLEDGEDMESSAGECOUNT uint32 = uint32(8892)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_DISCARDEDMESSAGECOUNT uint32 = uint32(8893)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MONITOREDITEMCOUNT uint32 = uint32(8894)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_DISABLEDMONITOREDITEMCOUNT uint32 = uint32(8895)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_MONITORINGQUEUEOVERFLOWCOUNT uint32 = uint32(8896)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_NEXTSEQUENCENUMBER uint32 = uint32(8897)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_TOTALREQUESTCOUNT uint32 = uint32(8898)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_TOTALREQUESTCOUNT uint32 = uint32(8900)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSTYPE_EVENTQUEUEOVERFLOWCOUNT uint32 = uint32(8902)
+const OpcuaNodeIdServices_TIMEZONEDATATYPE uint32 = uint32(8912)
+const OpcuaNodeIdServices_TIMEZONEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(8913)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TIMEZONEDATATYPE uint32 = uint32(8914)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TIMEZONEDATATYPE_DATATYPEVERSION uint32 = uint32(8915)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TIMEZONEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8916)
+const OpcuaNodeIdServices_TIMEZONEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(8917)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TIMEZONEDATATYPE uint32 = uint32(8918)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TIMEZONEDATATYPE_DATATYPEVERSION uint32 = uint32(8919)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TIMEZONEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(8920)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE uint32 = uint32(8927)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_EVENTID uint32 = uint32(8928)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_EVENTTYPE uint32 = uint32(8929)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_SOURCENODE uint32 = uint32(8930)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_SOURCENAME uint32 = uint32(8931)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_TIME uint32 = uint32(8932)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_RECEIVETIME uint32 = uint32(8933)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_LOCALTIME uint32 = uint32(8934)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_MESSAGE uint32 = uint32(8935)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_SEVERITY uint32 = uint32(8936)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(8937)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_STATUS uint32 = uint32(8938)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_SERVERID uint32 = uint32(8939)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(8940)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_CLIENTUSERID uint32 = uint32(8941)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_METHODID uint32 = uint32(8942)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_INPUTARGUMENTS uint32 = uint32(8943)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE uint32 = uint32(8944)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_EVENTID uint32 = uint32(8945)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_EVENTTYPE uint32 = uint32(8946)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_SOURCENODE uint32 = uint32(8947)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_SOURCENAME uint32 = uint32(8948)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_TIME uint32 = uint32(8949)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_RECEIVETIME uint32 = uint32(8950)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_LOCALTIME uint32 = uint32(8951)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_MESSAGE uint32 = uint32(8952)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_SEVERITY uint32 = uint32(8953)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(8954)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_STATUS uint32 = uint32(8955)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_SERVERID uint32 = uint32(8956)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(8957)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_CLIENTUSERID uint32 = uint32(8958)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_METHODID uint32 = uint32(8959)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_INPUTARGUMENTS uint32 = uint32(8960)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE uint32 = uint32(8961)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_EVENTID uint32 = uint32(8962)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_EVENTTYPE uint32 = uint32(8963)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_SOURCENODE uint32 = uint32(8964)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_SOURCENAME uint32 = uint32(8965)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_TIME uint32 = uint32(8966)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_RECEIVETIME uint32 = uint32(8967)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_LOCALTIME uint32 = uint32(8968)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_MESSAGE uint32 = uint32(8969)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_SEVERITY uint32 = uint32(8970)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(8971)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_STATUS uint32 = uint32(8972)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_SERVERID uint32 = uint32(8973)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(8974)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_CLIENTUSERID uint32 = uint32(8975)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_METHODID uint32 = uint32(8976)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_INPUTARGUMENTS uint32 = uint32(8977)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE uint32 = uint32(8995)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_ID uint32 = uint32(8996)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_NAME uint32 = uint32(8997)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_NUMBER uint32 = uint32(8998)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_EFFECTIVEDISPLAYNAME uint32 = uint32(8999)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_TRANSITIONTIME uint32 = uint32(9000)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_EFFECTIVETRANSITIONTIME uint32 = uint32(9001)
+const OpcuaNodeIdServices_CONDITIONVARIABLETYPE uint32 = uint32(9002)
+const OpcuaNodeIdServices_CONDITIONVARIABLETYPE_SOURCETIMESTAMP uint32 = uint32(9003)
+const OpcuaNodeIdServices_HASTRUESUBSTATE uint32 = uint32(9004)
+const OpcuaNodeIdServices_HASFALSESUBSTATE uint32 = uint32(9005)
+const OpcuaNodeIdServices_HASCONDITION uint32 = uint32(9006)
+const OpcuaNodeIdServices_CONDITIONREFRESHMETHODTYPE uint32 = uint32(9007)
+const OpcuaNodeIdServices_CONDITIONREFRESHMETHODTYPE_INPUTARGUMENTS uint32 = uint32(9008)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONNAME uint32 = uint32(9009)
+const OpcuaNodeIdServices_CONDITIONTYPE_BRANCHID uint32 = uint32(9010)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE uint32 = uint32(9011)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_ID uint32 = uint32(9012)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_NAME uint32 = uint32(9013)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9014)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9015)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9016)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9017)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9018)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9019)
+const OpcuaNodeIdServices_CONDITIONTYPE_QUALITY uint32 = uint32(9020)
+const OpcuaNodeIdServices_CONDITIONTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9021)
+const OpcuaNodeIdServices_CONDITIONTYPE_LASTSEVERITY uint32 = uint32(9022)
+const OpcuaNodeIdServices_CONDITIONTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9023)
+const OpcuaNodeIdServices_CONDITIONTYPE_COMMENT uint32 = uint32(9024)
+const OpcuaNodeIdServices_CONDITIONTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9025)
+const OpcuaNodeIdServices_CONDITIONTYPE_CLIENTUSERID uint32 = uint32(9026)
+const OpcuaNodeIdServices_CONDITIONTYPE_ENABLE uint32 = uint32(9027)
+const OpcuaNodeIdServices_CONDITIONTYPE_DISABLE uint32 = uint32(9028)
+const OpcuaNodeIdServices_CONDITIONTYPE_ADDCOMMENT uint32 = uint32(9029)
+const OpcuaNodeIdServices_CONDITIONTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9030)
+const OpcuaNodeIdServices_DIALOGRESPONSEMETHODTYPE uint32 = uint32(9031)
+const OpcuaNodeIdServices_DIALOGRESPONSEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(9032)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONNAME uint32 = uint32(9033)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_BRANCHID uint32 = uint32(9034)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE uint32 = uint32(9035)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_ID uint32 = uint32(9036)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_NAME uint32 = uint32(9037)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9038)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9039)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9040)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9041)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9042)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9043)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_QUALITY uint32 = uint32(9044)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9045)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_LASTSEVERITY uint32 = uint32(9046)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9047)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_COMMENT uint32 = uint32(9048)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9049)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CLIENTUSERID uint32 = uint32(9050)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ENABLE uint32 = uint32(9051)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DISABLE uint32 = uint32(9052)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ADDCOMMENT uint32 = uint32(9053)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9054)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE uint32 = uint32(9055)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_ID uint32 = uint32(9056)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_NAME uint32 = uint32(9057)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_NUMBER uint32 = uint32(9058)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9059)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_TRANSITIONTIME uint32 = uint32(9060)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9061)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_TRUESTATE uint32 = uint32(9062)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DIALOGSTATE_FALSESTATE uint32 = uint32(9063)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_RESPONSEOPTIONSET uint32 = uint32(9064)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_DEFAULTRESPONSE uint32 = uint32(9065)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_OKRESPONSE uint32 = uint32(9066)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CANCELRESPONSE uint32 = uint32(9067)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_LASTRESPONSE uint32 = uint32(9068)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_RESPOND uint32 = uint32(9069)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_RESPOND_INPUTARGUMENTS uint32 = uint32(9070)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONNAME uint32 = uint32(9071)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_BRANCHID uint32 = uint32(9072)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE uint32 = uint32(9073)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_ID uint32 = uint32(9074)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_NAME uint32 = uint32(9075)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9076)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9077)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9078)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9079)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9080)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9081)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_QUALITY uint32 = uint32(9082)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9083)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_LASTSEVERITY uint32 = uint32(9084)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9085)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_COMMENT uint32 = uint32(9086)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9087)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CLIENTUSERID uint32 = uint32(9088)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ENABLE uint32 = uint32(9089)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_DISABLE uint32 = uint32(9090)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ADDCOMMENT uint32 = uint32(9091)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9092)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE uint32 = uint32(9093)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_ID uint32 = uint32(9094)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_NAME uint32 = uint32(9095)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9096)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9097)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9098)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9099)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9100)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9101)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE uint32 = uint32(9102)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9103)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9104)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9105)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9106)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9107)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9108)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9109)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9110)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKNOWLEDGE uint32 = uint32(9111)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9112)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRM uint32 = uint32(9113)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9114)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVETIME uint32 = uint32(9115)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONNAME uint32 = uint32(9116)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_BRANCHID uint32 = uint32(9117)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE uint32 = uint32(9118)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_ID uint32 = uint32(9119)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_NAME uint32 = uint32(9120)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9121)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9122)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9123)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9124)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9125)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9126)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_QUALITY uint32 = uint32(9127)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9128)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LASTSEVERITY uint32 = uint32(9129)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9130)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_COMMENT uint32 = uint32(9131)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9132)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CLIENTUSERID uint32 = uint32(9133)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ENABLE uint32 = uint32(9134)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_DISABLE uint32 = uint32(9135)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ADDCOMMENT uint32 = uint32(9136)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9137)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE uint32 = uint32(9138)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_ID uint32 = uint32(9139)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_NAME uint32 = uint32(9140)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9141)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9142)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9143)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9144)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9145)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9146)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE uint32 = uint32(9147)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9148)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9149)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9150)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9151)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9152)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9153)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9154)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9155)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKNOWLEDGE uint32 = uint32(9156)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9157)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRM uint32 = uint32(9158)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9159)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE uint32 = uint32(9160)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_ID uint32 = uint32(9161)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_NAME uint32 = uint32(9162)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9163)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9164)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9165)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9166)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9167)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9168)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE uint32 = uint32(9169)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9170)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9171)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9172)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9173)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9174)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9175)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9176)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9177)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE uint32 = uint32(9178)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9179)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9180)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9181)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9182)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9183)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9184)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9185)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9186)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9187)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9188)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9189)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9211)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9212)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9213)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9214)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9215)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_MAXTIMESHELVED uint32 = uint32(9216)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONNAME uint32 = uint32(9217)
+const OpcuaNodeIdServices_LIMITALARMTYPE_BRANCHID uint32 = uint32(9218)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE uint32 = uint32(9219)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9220)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9221)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9222)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9223)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9224)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9225)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9226)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9227)
+const OpcuaNodeIdServices_LIMITALARMTYPE_QUALITY uint32 = uint32(9228)
+const OpcuaNodeIdServices_LIMITALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9229)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LASTSEVERITY uint32 = uint32(9230)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9231)
+const OpcuaNodeIdServices_LIMITALARMTYPE_COMMENT uint32 = uint32(9232)
+const OpcuaNodeIdServices_LIMITALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9233)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CLIENTUSERID uint32 = uint32(9234)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ENABLE uint32 = uint32(9235)
+const OpcuaNodeIdServices_LIMITALARMTYPE_DISABLE uint32 = uint32(9236)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ADDCOMMENT uint32 = uint32(9237)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9238)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE uint32 = uint32(9239)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9240)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9241)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9242)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9243)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9244)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9245)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9246)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9247)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9248)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9249)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9250)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9251)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9252)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9253)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9254)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9255)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9256)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKNOWLEDGE uint32 = uint32(9257)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9258)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRM uint32 = uint32(9259)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9260)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE uint32 = uint32(9261)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9262)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9263)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9264)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9265)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9266)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9267)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9268)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9269)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9270)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9271)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9272)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9273)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9274)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9275)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9276)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9277)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9278)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE uint32 = uint32(9279)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9280)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9281)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9282)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9283)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9284)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9285)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9286)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9287)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9288)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9289)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9290)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9312)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9313)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9314)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9315)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9316)
+const OpcuaNodeIdServices_LIMITALARMTYPE_MAXTIMESHELVED uint32 = uint32(9317)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE uint32 = uint32(9318)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_CURRENTSTATE uint32 = uint32(9319)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(9320)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(9321)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(9322)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9323)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION uint32 = uint32(9324)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(9325)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(9326)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(9327)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9328)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHHIGH uint32 = uint32(9329)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHHIGH_STATENUMBER uint32 = uint32(9330)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGH uint32 = uint32(9331)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGH_STATENUMBER uint32 = uint32(9332)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOW uint32 = uint32(9333)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOW_STATENUMBER uint32 = uint32(9334)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWLOW uint32 = uint32(9335)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWLOW_STATENUMBER uint32 = uint32(9336)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWLOWTOLOW uint32 = uint32(9337)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWTOLOWLOW uint32 = uint32(9338)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHHIGHTOHIGH uint32 = uint32(9339)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHTOHIGHHIGH uint32 = uint32(9340)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE uint32 = uint32(9341)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_EVENTID uint32 = uint32(9342)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_EVENTTYPE uint32 = uint32(9343)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SOURCENODE uint32 = uint32(9344)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SOURCENAME uint32 = uint32(9345)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_TIME uint32 = uint32(9346)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_RECEIVETIME uint32 = uint32(9347)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LOCALTIME uint32 = uint32(9348)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_MESSAGE uint32 = uint32(9349)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SEVERITY uint32 = uint32(9350)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONNAME uint32 = uint32(9351)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_BRANCHID uint32 = uint32(9352)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_RETAIN uint32 = uint32(9353)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE uint32 = uint32(9354)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9355)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9356)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9357)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9358)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9359)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9360)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9361)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9362)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_QUALITY uint32 = uint32(9363)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9364)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LASTSEVERITY uint32 = uint32(9365)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9366)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_COMMENT uint32 = uint32(9367)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9368)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CLIENTUSERID uint32 = uint32(9369)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ENABLE uint32 = uint32(9370)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_DISABLE uint32 = uint32(9371)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ADDCOMMENT uint32 = uint32(9372)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9373)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH uint32 = uint32(9374)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(9375)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE uint32 = uint32(9376)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9377)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9378)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9379)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9380)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9381)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9382)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9383)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9384)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9385)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9386)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9387)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9388)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9389)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9390)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9391)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9392)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9393)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKNOWLEDGE uint32 = uint32(9394)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9395)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRM uint32 = uint32(9396)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9397)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE uint32 = uint32(9398)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9399)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9400)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9401)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9402)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9403)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9404)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9405)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9406)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9407)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9408)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9409)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9410)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9411)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9412)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9413)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9414)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9415)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE uint32 = uint32(9416)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9417)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9418)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9419)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9420)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9421)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9422)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9423)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9424)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9425)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9426)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9427)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9449)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9450)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9451)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9452)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9453)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_MAXTIMESHELVED uint32 = uint32(9454)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE uint32 = uint32(9455)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_CURRENTSTATE uint32 = uint32(9456)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_CURRENTSTATE_ID uint32 = uint32(9457)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_CURRENTSTATE_NAME uint32 = uint32(9458)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9459)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9460)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION uint32 = uint32(9461)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION_ID uint32 = uint32(9462)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION_NAME uint32 = uint32(9463)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9464)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9465)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(9478)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_HIGHLIMIT uint32 = uint32(9479)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LOWLIMIT uint32 = uint32(9480)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LOWLOWLIMIT uint32 = uint32(9481)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE uint32 = uint32(9482)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_EVENTID uint32 = uint32(9483)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_EVENTTYPE uint32 = uint32(9484)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SOURCENODE uint32 = uint32(9485)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SOURCENAME uint32 = uint32(9486)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_TIME uint32 = uint32(9487)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_RECEIVETIME uint32 = uint32(9488)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LOCALTIME uint32 = uint32(9489)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_MESSAGE uint32 = uint32(9490)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SEVERITY uint32 = uint32(9491)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONNAME uint32 = uint32(9492)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_BRANCHID uint32 = uint32(9493)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_RETAIN uint32 = uint32(9494)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE uint32 = uint32(9495)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9496)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9497)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9498)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9499)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9500)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9501)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9502)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9503)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_QUALITY uint32 = uint32(9504)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9505)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LASTSEVERITY uint32 = uint32(9506)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9507)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_COMMENT uint32 = uint32(9508)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9509)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CLIENTUSERID uint32 = uint32(9510)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ENABLE uint32 = uint32(9511)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_DISABLE uint32 = uint32(9512)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ADDCOMMENT uint32 = uint32(9513)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9514)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH uint32 = uint32(9515)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(9516)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE uint32 = uint32(9517)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9518)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9519)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9520)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9521)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9522)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9523)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9524)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9525)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9526)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9527)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9528)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9529)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9530)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9531)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9532)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9533)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9534)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKNOWLEDGE uint32 = uint32(9535)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9536)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRM uint32 = uint32(9537)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9538)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE uint32 = uint32(9539)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9540)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9541)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9542)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9543)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9544)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9545)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9546)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9547)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9548)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9549)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9550)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9551)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9552)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9553)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9554)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9555)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9556)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE uint32 = uint32(9557)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9558)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9559)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9560)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9561)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9562)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9563)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9564)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9565)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9566)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9567)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9568)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9590)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9591)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9592)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9593)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9594)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_MAXTIMESHELVED uint32 = uint32(9595)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE uint32 = uint32(9596)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_CURRENTSTATE uint32 = uint32(9597)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_CURRENTSTATE_ID uint32 = uint32(9598)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_CURRENTSTATE_NAME uint32 = uint32(9599)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9600)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9601)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION uint32 = uint32(9602)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION_ID uint32 = uint32(9603)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION_NAME uint32 = uint32(9604)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9605)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9606)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(9619)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_HIGHLIMIT uint32 = uint32(9620)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LOWLIMIT uint32 = uint32(9621)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LOWLOWLIMIT uint32 = uint32(9622)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE uint32 = uint32(9623)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_EVENTID uint32 = uint32(9624)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_EVENTTYPE uint32 = uint32(9625)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SOURCENODE uint32 = uint32(9626)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SOURCENAME uint32 = uint32(9627)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_TIME uint32 = uint32(9628)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_RECEIVETIME uint32 = uint32(9629)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LOCALTIME uint32 = uint32(9630)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_MESSAGE uint32 = uint32(9631)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SEVERITY uint32 = uint32(9632)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONNAME uint32 = uint32(9633)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_BRANCHID uint32 = uint32(9634)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_RETAIN uint32 = uint32(9635)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE uint32 = uint32(9636)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9637)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9638)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9639)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9640)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9641)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9642)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9643)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9644)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_QUALITY uint32 = uint32(9645)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9646)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LASTSEVERITY uint32 = uint32(9647)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9648)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_COMMENT uint32 = uint32(9649)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9650)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CLIENTUSERID uint32 = uint32(9651)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENABLE uint32 = uint32(9652)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_DISABLE uint32 = uint32(9653)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ADDCOMMENT uint32 = uint32(9654)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9655)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH uint32 = uint32(9656)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(9657)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE uint32 = uint32(9658)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9659)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9660)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9661)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9662)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9663)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9664)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9665)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9666)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9667)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9668)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9669)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9670)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9671)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9672)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9673)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9674)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9675)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKNOWLEDGE uint32 = uint32(9676)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9677)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRM uint32 = uint32(9678)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9679)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE uint32 = uint32(9680)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9681)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9682)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9683)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9684)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9685)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9686)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9687)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9688)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9689)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9690)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9691)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9692)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9693)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9694)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9695)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9696)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9697)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE uint32 = uint32(9698)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9699)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9700)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9701)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9702)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9703)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9704)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9705)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9706)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9707)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9708)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9709)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9731)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9732)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9733)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9734)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9735)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_MAXTIMESHELVED uint32 = uint32(9736)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE uint32 = uint32(9737)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_CURRENTSTATE uint32 = uint32(9738)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_CURRENTSTATE_ID uint32 = uint32(9739)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_CURRENTSTATE_NAME uint32 = uint32(9740)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9741)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9742)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION uint32 = uint32(9743)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION_ID uint32 = uint32(9744)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION_NAME uint32 = uint32(9745)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9746)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9747)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(9760)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_HIGHLIMIT uint32 = uint32(9761)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LOWLIMIT uint32 = uint32(9762)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWLIMIT uint32 = uint32(9763)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE uint32 = uint32(9764)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_EVENTID uint32 = uint32(9765)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_EVENTTYPE uint32 = uint32(9766)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SOURCENODE uint32 = uint32(9767)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SOURCENAME uint32 = uint32(9768)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_TIME uint32 = uint32(9769)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_RECEIVETIME uint32 = uint32(9770)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LOCALTIME uint32 = uint32(9771)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_MESSAGE uint32 = uint32(9772)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SEVERITY uint32 = uint32(9773)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONNAME uint32 = uint32(9774)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BRANCHID uint32 = uint32(9775)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_RETAIN uint32 = uint32(9776)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE uint32 = uint32(9777)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9778)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9779)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9780)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9781)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9782)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9783)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9784)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9785)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_QUALITY uint32 = uint32(9786)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9787)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LASTSEVERITY uint32 = uint32(9788)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9789)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_COMMENT uint32 = uint32(9790)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9791)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CLIENTUSERID uint32 = uint32(9792)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ENABLE uint32 = uint32(9793)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_DISABLE uint32 = uint32(9794)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ADDCOMMENT uint32 = uint32(9795)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9796)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH uint32 = uint32(9797)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(9798)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE uint32 = uint32(9799)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9800)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9801)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9802)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9803)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9804)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9805)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9806)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9807)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9808)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9809)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9810)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9811)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9812)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9813)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9814)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9815)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9816)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKNOWLEDGE uint32 = uint32(9817)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9818)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRM uint32 = uint32(9819)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9820)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE uint32 = uint32(9821)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9822)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9823)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9824)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9825)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9826)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9827)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9828)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9829)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9830)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9831)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9832)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9833)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9834)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9835)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9836)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9837)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9838)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE uint32 = uint32(9839)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9840)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9841)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9842)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9843)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9844)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9845)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9846)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9847)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9848)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9849)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9850)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(9872)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(9873)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(9874)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(9875)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(9876)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_MAXTIMESHELVED uint32 = uint32(9877)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE uint32 = uint32(9878)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_CURRENTSTATE uint32 = uint32(9879)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_CURRENTSTATE_ID uint32 = uint32(9880)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_CURRENTSTATE_NAME uint32 = uint32(9881)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9882)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9883)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION uint32 = uint32(9884)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION_ID uint32 = uint32(9885)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION_NAME uint32 = uint32(9886)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9887)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9888)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(9901)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_HIGHLIMIT uint32 = uint32(9902)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LOWLIMIT uint32 = uint32(9903)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LOWLOWLIMIT uint32 = uint32(9904)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SETPOINTNODE uint32 = uint32(9905)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE uint32 = uint32(9906)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_EVENTID uint32 = uint32(9907)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_EVENTTYPE uint32 = uint32(9908)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SOURCENODE uint32 = uint32(9909)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SOURCENAME uint32 = uint32(9910)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_TIME uint32 = uint32(9911)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_RECEIVETIME uint32 = uint32(9912)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOCALTIME uint32 = uint32(9913)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_MESSAGE uint32 = uint32(9914)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SEVERITY uint32 = uint32(9915)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONNAME uint32 = uint32(9916)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_BRANCHID uint32 = uint32(9917)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_RETAIN uint32 = uint32(9918)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE uint32 = uint32(9919)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(9920)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(9921)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(9922)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9923)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(9924)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9925)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(9926)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(9927)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_QUALITY uint32 = uint32(9928)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(9929)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LASTSEVERITY uint32 = uint32(9930)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(9931)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_COMMENT uint32 = uint32(9932)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(9933)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CLIENTUSERID uint32 = uint32(9934)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ENABLE uint32 = uint32(9935)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_DISABLE uint32 = uint32(9936)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ADDCOMMENT uint32 = uint32(9937)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(9938)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH uint32 = uint32(9939)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(9940)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE uint32 = uint32(9941)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_ID uint32 = uint32(9942)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(9943)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(9944)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9945)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(9946)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9947)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(9948)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(9949)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE uint32 = uint32(9950)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(9951)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(9952)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(9953)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9954)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(9955)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9956)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(9957)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(9958)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKNOWLEDGE uint32 = uint32(9959)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(9960)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRM uint32 = uint32(9961)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(9962)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE uint32 = uint32(9963)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_ID uint32 = uint32(9964)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(9965)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(9966)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9967)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(9968)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9969)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(9970)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(9971)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(9972)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(9973)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(9974)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(9975)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9976)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(9977)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(9978)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(9979)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(9980)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE uint32 = uint32(9981)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(9982)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(9983)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(9984)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(9985)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(9986)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(9987)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(9988)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(9989)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(9990)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(9991)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(9992)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10014)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10015)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10016)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10017)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10018)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_MAXTIMESHELVED uint32 = uint32(10019)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE uint32 = uint32(10020)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_ID uint32 = uint32(10021)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_NAME uint32 = uint32(10022)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_NUMBER uint32 = uint32(10023)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10024)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_TRANSITIONTIME uint32 = uint32(10025)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10026)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_TRUESTATE uint32 = uint32(10027)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHSTATE_FALSESTATE uint32 = uint32(10028)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE uint32 = uint32(10029)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_ID uint32 = uint32(10030)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_NAME uint32 = uint32(10031)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_NUMBER uint32 = uint32(10032)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10033)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_TRANSITIONTIME uint32 = uint32(10034)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10035)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_TRUESTATE uint32 = uint32(10036)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHSTATE_FALSESTATE uint32 = uint32(10037)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE uint32 = uint32(10038)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_ID uint32 = uint32(10039)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_NAME uint32 = uint32(10040)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_NUMBER uint32 = uint32(10041)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10042)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_TRANSITIONTIME uint32 = uint32(10043)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10044)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_TRUESTATE uint32 = uint32(10045)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWSTATE_FALSESTATE uint32 = uint32(10046)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE uint32 = uint32(10047)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_ID uint32 = uint32(10048)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_NAME uint32 = uint32(10049)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_NUMBER uint32 = uint32(10050)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10051)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_TRANSITIONTIME uint32 = uint32(10052)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10053)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_TRUESTATE uint32 = uint32(10054)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWSTATE_FALSESTATE uint32 = uint32(10055)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(10056)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_HIGHLIMIT uint32 = uint32(10057)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLIMIT uint32 = uint32(10058)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LOWLOWLIMIT uint32 = uint32(10059)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE uint32 = uint32(10060)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_EVENTID uint32 = uint32(10061)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_EVENTTYPE uint32 = uint32(10062)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SOURCENODE uint32 = uint32(10063)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SOURCENAME uint32 = uint32(10064)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_TIME uint32 = uint32(10065)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_RECEIVETIME uint32 = uint32(10066)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOCALTIME uint32 = uint32(10067)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_MESSAGE uint32 = uint32(10068)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SEVERITY uint32 = uint32(10069)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONNAME uint32 = uint32(10070)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_BRANCHID uint32 = uint32(10071)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_RETAIN uint32 = uint32(10072)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE uint32 = uint32(10073)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10074)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10075)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10076)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10077)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10078)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10079)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10080)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10081)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_QUALITY uint32 = uint32(10082)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10083)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LASTSEVERITY uint32 = uint32(10084)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10085)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_COMMENT uint32 = uint32(10086)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10087)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CLIENTUSERID uint32 = uint32(10088)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ENABLE uint32 = uint32(10089)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_DISABLE uint32 = uint32(10090)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ADDCOMMENT uint32 = uint32(10091)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10092)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH uint32 = uint32(10093)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10094)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE uint32 = uint32(10095)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10096)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10097)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10098)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10099)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10100)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10101)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10102)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10103)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10104)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10105)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10106)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10107)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10108)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10109)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10110)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10111)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10112)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKNOWLEDGE uint32 = uint32(10113)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10114)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRM uint32 = uint32(10115)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10116)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE uint32 = uint32(10117)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10118)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10119)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10120)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10121)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10122)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10123)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10124)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10125)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10126)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10127)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10128)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10129)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10130)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10131)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10132)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10133)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10134)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE uint32 = uint32(10135)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10136)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10137)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10138)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10139)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10140)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10141)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10142)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10143)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10144)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10145)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10146)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10168)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10169)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10170)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10171)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10172)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_MAXTIMESHELVED uint32 = uint32(10173)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE uint32 = uint32(10174)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_ID uint32 = uint32(10175)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_NAME uint32 = uint32(10176)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_NUMBER uint32 = uint32(10177)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10178)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_TRANSITIONTIME uint32 = uint32(10179)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10180)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_TRUESTATE uint32 = uint32(10181)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHSTATE_FALSESTATE uint32 = uint32(10182)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE uint32 = uint32(10183)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_ID uint32 = uint32(10184)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_NAME uint32 = uint32(10185)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_NUMBER uint32 = uint32(10186)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10187)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_TRANSITIONTIME uint32 = uint32(10188)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10189)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_TRUESTATE uint32 = uint32(10190)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHSTATE_FALSESTATE uint32 = uint32(10191)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE uint32 = uint32(10192)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_ID uint32 = uint32(10193)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_NAME uint32 = uint32(10194)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_NUMBER uint32 = uint32(10195)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10196)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_TRANSITIONTIME uint32 = uint32(10197)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10198)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_TRUESTATE uint32 = uint32(10199)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWSTATE_FALSESTATE uint32 = uint32(10200)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE uint32 = uint32(10201)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_ID uint32 = uint32(10202)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_NAME uint32 = uint32(10203)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_NUMBER uint32 = uint32(10204)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10205)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_TRANSITIONTIME uint32 = uint32(10206)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10207)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_TRUESTATE uint32 = uint32(10208)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWSTATE_FALSESTATE uint32 = uint32(10209)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(10210)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_HIGHLIMIT uint32 = uint32(10211)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLIMIT uint32 = uint32(10212)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LOWLOWLIMIT uint32 = uint32(10213)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE uint32 = uint32(10214)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_EVENTID uint32 = uint32(10215)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_EVENTTYPE uint32 = uint32(10216)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SOURCENODE uint32 = uint32(10217)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SOURCENAME uint32 = uint32(10218)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_TIME uint32 = uint32(10219)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_RECEIVETIME uint32 = uint32(10220)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOCALTIME uint32 = uint32(10221)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_MESSAGE uint32 = uint32(10222)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SEVERITY uint32 = uint32(10223)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONNAME uint32 = uint32(10224)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_BRANCHID uint32 = uint32(10225)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_RETAIN uint32 = uint32(10226)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE uint32 = uint32(10227)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10228)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10229)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10230)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10231)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10232)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10233)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10234)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10235)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_QUALITY uint32 = uint32(10236)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10237)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LASTSEVERITY uint32 = uint32(10238)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10239)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_COMMENT uint32 = uint32(10240)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10241)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CLIENTUSERID uint32 = uint32(10242)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENABLE uint32 = uint32(10243)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_DISABLE uint32 = uint32(10244)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ADDCOMMENT uint32 = uint32(10245)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10246)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH uint32 = uint32(10247)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10248)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE uint32 = uint32(10249)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10250)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10251)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10252)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10253)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10254)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10255)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10256)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10257)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10258)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10259)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10260)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10261)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10262)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10263)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10264)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10265)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10266)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKNOWLEDGE uint32 = uint32(10267)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10268)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRM uint32 = uint32(10269)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10270)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE uint32 = uint32(10271)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10272)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10273)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10274)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10275)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10276)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10277)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10278)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10279)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10280)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10281)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10282)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10283)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10284)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10285)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10286)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10287)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10288)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE uint32 = uint32(10289)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10290)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10291)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10292)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10293)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10294)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10295)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10296)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10297)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10298)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10299)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10300)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10322)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10323)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10324)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10325)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10326)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_MAXTIMESHELVED uint32 = uint32(10327)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE uint32 = uint32(10328)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_ID uint32 = uint32(10329)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_NAME uint32 = uint32(10330)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_NUMBER uint32 = uint32(10331)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10332)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_TRANSITIONTIME uint32 = uint32(10333)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10334)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_TRUESTATE uint32 = uint32(10335)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHSTATE_FALSESTATE uint32 = uint32(10336)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE uint32 = uint32(10337)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_ID uint32 = uint32(10338)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_NAME uint32 = uint32(10339)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_NUMBER uint32 = uint32(10340)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10341)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_TRANSITIONTIME uint32 = uint32(10342)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10343)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_TRUESTATE uint32 = uint32(10344)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHSTATE_FALSESTATE uint32 = uint32(10345)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE uint32 = uint32(10346)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_ID uint32 = uint32(10347)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_NAME uint32 = uint32(10348)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_NUMBER uint32 = uint32(10349)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10350)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_TRANSITIONTIME uint32 = uint32(10351)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10352)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_TRUESTATE uint32 = uint32(10353)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWSTATE_FALSESTATE uint32 = uint32(10354)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE uint32 = uint32(10355)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_ID uint32 = uint32(10356)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_NAME uint32 = uint32(10357)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_NUMBER uint32 = uint32(10358)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10359)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_TRANSITIONTIME uint32 = uint32(10360)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10361)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_TRUESTATE uint32 = uint32(10362)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWSTATE_FALSESTATE uint32 = uint32(10363)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(10364)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_HIGHLIMIT uint32 = uint32(10365)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLIMIT uint32 = uint32(10366)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LOWLOWLIMIT uint32 = uint32(10367)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE uint32 = uint32(10368)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_EVENTID uint32 = uint32(10369)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_EVENTTYPE uint32 = uint32(10370)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SOURCENODE uint32 = uint32(10371)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SOURCENAME uint32 = uint32(10372)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_TIME uint32 = uint32(10373)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_RECEIVETIME uint32 = uint32(10374)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOCALTIME uint32 = uint32(10375)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_MESSAGE uint32 = uint32(10376)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SEVERITY uint32 = uint32(10377)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONNAME uint32 = uint32(10378)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BRANCHID uint32 = uint32(10379)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_RETAIN uint32 = uint32(10380)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE uint32 = uint32(10381)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10382)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10383)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10384)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10385)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10386)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10387)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10388)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10389)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_QUALITY uint32 = uint32(10390)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10391)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LASTSEVERITY uint32 = uint32(10392)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10393)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_COMMENT uint32 = uint32(10394)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10395)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CLIENTUSERID uint32 = uint32(10396)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ENABLE uint32 = uint32(10397)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_DISABLE uint32 = uint32(10398)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ADDCOMMENT uint32 = uint32(10399)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10400)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH uint32 = uint32(10401)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10402)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE uint32 = uint32(10403)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10404)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10405)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10406)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10407)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10408)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10409)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10410)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10411)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10412)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10413)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10414)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10415)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10416)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10417)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10418)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10419)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10420)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKNOWLEDGE uint32 = uint32(10421)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10422)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRM uint32 = uint32(10423)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10424)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE uint32 = uint32(10425)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10426)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10427)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10428)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10429)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10430)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10431)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10432)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10433)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10434)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10435)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10436)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10437)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10438)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10439)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10440)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10441)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10442)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE uint32 = uint32(10443)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10444)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10445)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10446)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10447)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10448)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10449)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10450)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10451)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10452)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10453)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10454)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10476)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10477)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10478)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10479)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10480)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_MAXTIMESHELVED uint32 = uint32(10481)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE uint32 = uint32(10482)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_ID uint32 = uint32(10483)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_NAME uint32 = uint32(10484)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_NUMBER uint32 = uint32(10485)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10486)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_TRANSITIONTIME uint32 = uint32(10487)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10488)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_TRUESTATE uint32 = uint32(10489)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHSTATE_FALSESTATE uint32 = uint32(10490)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE uint32 = uint32(10491)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_ID uint32 = uint32(10492)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_NAME uint32 = uint32(10493)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_NUMBER uint32 = uint32(10494)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10495)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_TRANSITIONTIME uint32 = uint32(10496)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10497)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_TRUESTATE uint32 = uint32(10498)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHSTATE_FALSESTATE uint32 = uint32(10499)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE uint32 = uint32(10500)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_ID uint32 = uint32(10501)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_NAME uint32 = uint32(10502)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_NUMBER uint32 = uint32(10503)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10504)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_TRANSITIONTIME uint32 = uint32(10505)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10506)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_TRUESTATE uint32 = uint32(10507)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWSTATE_FALSESTATE uint32 = uint32(10508)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE uint32 = uint32(10509)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_ID uint32 = uint32(10510)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_NAME uint32 = uint32(10511)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_NUMBER uint32 = uint32(10512)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10513)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_TRANSITIONTIME uint32 = uint32(10514)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10515)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_TRUESTATE uint32 = uint32(10516)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWSTATE_FALSESTATE uint32 = uint32(10517)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(10518)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_HIGHLIMIT uint32 = uint32(10519)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLIMIT uint32 = uint32(10520)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LOWLOWLIMIT uint32 = uint32(10521)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SETPOINTNODE uint32 = uint32(10522)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE uint32 = uint32(10523)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_EVENTID uint32 = uint32(10524)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_EVENTTYPE uint32 = uint32(10525)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SOURCENODE uint32 = uint32(10526)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SOURCENAME uint32 = uint32(10527)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_TIME uint32 = uint32(10528)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_RECEIVETIME uint32 = uint32(10529)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LOCALTIME uint32 = uint32(10530)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_MESSAGE uint32 = uint32(10531)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SEVERITY uint32 = uint32(10532)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONNAME uint32 = uint32(10533)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_BRANCHID uint32 = uint32(10534)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_RETAIN uint32 = uint32(10535)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE uint32 = uint32(10536)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10537)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10538)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10539)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10540)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10541)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10542)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10543)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10544)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_QUALITY uint32 = uint32(10545)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10546)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LASTSEVERITY uint32 = uint32(10547)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10548)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_COMMENT uint32 = uint32(10549)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10550)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CLIENTUSERID uint32 = uint32(10551)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ENABLE uint32 = uint32(10552)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_DISABLE uint32 = uint32(10553)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ADDCOMMENT uint32 = uint32(10554)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10555)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONREFRESH uint32 = uint32(10556)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10557)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE uint32 = uint32(10558)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10559)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10560)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10561)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10562)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10563)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10564)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10565)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10566)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10567)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10568)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10569)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10570)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10571)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10572)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10573)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10574)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10575)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKNOWLEDGE uint32 = uint32(10576)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10577)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRM uint32 = uint32(10578)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10579)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE uint32 = uint32(10580)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10581)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10582)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10583)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10584)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10585)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10586)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10587)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10588)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10589)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10590)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10591)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10592)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10593)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10594)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10595)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10596)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10597)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE uint32 = uint32(10598)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10599)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10600)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10601)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10602)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10603)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10604)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10605)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10606)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10607)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10608)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10609)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10631)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10632)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10633)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10634)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10635)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_MAXTIMESHELVED uint32 = uint32(10636)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE uint32 = uint32(10637)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_EVENTID uint32 = uint32(10638)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_EVENTTYPE uint32 = uint32(10639)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SOURCENODE uint32 = uint32(10640)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SOURCENAME uint32 = uint32(10641)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_TIME uint32 = uint32(10642)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_RECEIVETIME uint32 = uint32(10643)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LOCALTIME uint32 = uint32(10644)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_MESSAGE uint32 = uint32(10645)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SEVERITY uint32 = uint32(10646)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONNAME uint32 = uint32(10647)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_BRANCHID uint32 = uint32(10648)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_RETAIN uint32 = uint32(10649)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE uint32 = uint32(10650)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10651)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10652)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10653)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10654)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10655)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10656)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10657)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10658)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_QUALITY uint32 = uint32(10659)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10660)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LASTSEVERITY uint32 = uint32(10661)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10662)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_COMMENT uint32 = uint32(10663)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10664)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CLIENTUSERID uint32 = uint32(10665)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ENABLE uint32 = uint32(10666)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_DISABLE uint32 = uint32(10667)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ADDCOMMENT uint32 = uint32(10668)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10669)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONREFRESH uint32 = uint32(10670)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10671)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE uint32 = uint32(10672)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10673)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10674)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10675)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10676)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10677)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10678)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10679)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10680)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10681)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10682)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10683)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10684)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10685)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10686)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10687)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10688)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10689)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKNOWLEDGE uint32 = uint32(10690)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10691)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRM uint32 = uint32(10692)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10693)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE uint32 = uint32(10694)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10695)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10696)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10697)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10698)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10699)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10700)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10701)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10702)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10703)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10704)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10705)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10706)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10707)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10708)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10709)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10710)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10711)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE uint32 = uint32(10712)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10713)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10714)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10715)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10716)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10717)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10718)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10719)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10720)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10721)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10722)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10723)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10745)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10746)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10747)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10748)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10749)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_MAXTIMESHELVED uint32 = uint32(10750)
+const OpcuaNodeIdServices_TRIPALARMTYPE uint32 = uint32(10751)
+const OpcuaNodeIdServices_TRIPALARMTYPE_EVENTID uint32 = uint32(10752)
+const OpcuaNodeIdServices_TRIPALARMTYPE_EVENTTYPE uint32 = uint32(10753)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SOURCENODE uint32 = uint32(10754)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SOURCENAME uint32 = uint32(10755)
+const OpcuaNodeIdServices_TRIPALARMTYPE_TIME uint32 = uint32(10756)
+const OpcuaNodeIdServices_TRIPALARMTYPE_RECEIVETIME uint32 = uint32(10757)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LOCALTIME uint32 = uint32(10758)
+const OpcuaNodeIdServices_TRIPALARMTYPE_MESSAGE uint32 = uint32(10759)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SEVERITY uint32 = uint32(10760)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONNAME uint32 = uint32(10761)
+const OpcuaNodeIdServices_TRIPALARMTYPE_BRANCHID uint32 = uint32(10762)
+const OpcuaNodeIdServices_TRIPALARMTYPE_RETAIN uint32 = uint32(10763)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE uint32 = uint32(10764)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(10765)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(10766)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(10767)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10768)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(10769)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10770)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(10771)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(10772)
+const OpcuaNodeIdServices_TRIPALARMTYPE_QUALITY uint32 = uint32(10773)
+const OpcuaNodeIdServices_TRIPALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(10774)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LASTSEVERITY uint32 = uint32(10775)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(10776)
+const OpcuaNodeIdServices_TRIPALARMTYPE_COMMENT uint32 = uint32(10777)
+const OpcuaNodeIdServices_TRIPALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(10778)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CLIENTUSERID uint32 = uint32(10779)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ENABLE uint32 = uint32(10780)
+const OpcuaNodeIdServices_TRIPALARMTYPE_DISABLE uint32 = uint32(10781)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ADDCOMMENT uint32 = uint32(10782)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(10783)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONREFRESH uint32 = uint32(10784)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(10785)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE uint32 = uint32(10786)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_ID uint32 = uint32(10787)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(10788)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(10789)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10790)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(10791)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10792)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(10793)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(10794)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE uint32 = uint32(10795)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(10796)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(10797)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(10798)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10799)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(10800)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10801)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(10802)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(10803)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKNOWLEDGE uint32 = uint32(10804)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(10805)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRM uint32 = uint32(10806)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(10807)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE uint32 = uint32(10808)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_ID uint32 = uint32(10809)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(10810)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(10811)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10812)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(10813)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10814)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(10815)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(10816)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(10817)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(10818)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(10819)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(10820)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10821)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(10822)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(10823)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(10824)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(10825)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE uint32 = uint32(10826)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(10827)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(10828)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(10829)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(10830)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(10831)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(10832)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(10833)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(10834)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(10835)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(10836)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(10837)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(10859)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(10860)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(10861)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(10862)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(10863)
+const OpcuaNodeIdServices_TRIPALARMTYPE_MAXTIMESHELVED uint32 = uint32(10864)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE uint32 = uint32(11093)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_EVENTID uint32 = uint32(11094)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_EVENTTYPE uint32 = uint32(11095)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_SOURCENODE uint32 = uint32(11096)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_SOURCENAME uint32 = uint32(11097)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_TIME uint32 = uint32(11098)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_RECEIVETIME uint32 = uint32(11099)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_LOCALTIME uint32 = uint32(11100)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_MESSAGE uint32 = uint32(11101)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_SEVERITY uint32 = uint32(11102)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(11103)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_STATUS uint32 = uint32(11104)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_SERVERID uint32 = uint32(11105)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(11106)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_CLIENTUSERID uint32 = uint32(11107)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_METHODID uint32 = uint32(11108)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_INPUTARGUMENTS uint32 = uint32(11109)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_TRUESTATE uint32 = uint32(11110)
+const OpcuaNodeIdServices_TWOSTATEVARIABLETYPE_FALSESTATE uint32 = uint32(11111)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONCLASSID uint32 = uint32(11112)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONCLASSNAME uint32 = uint32(11113)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONCLASSID uint32 = uint32(11114)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONCLASSNAME uint32 = uint32(11115)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONCLASSID uint32 = uint32(11116)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONCLASSNAME uint32 = uint32(11117)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONCLASSID uint32 = uint32(11118)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONCLASSNAME uint32 = uint32(11119)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_INPUTNODE uint32 = uint32(11120)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONCLASSID uint32 = uint32(11121)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11122)
+const OpcuaNodeIdServices_LIMITALARMTYPE_INPUTNODE uint32 = uint32(11123)
+const OpcuaNodeIdServices_LIMITALARMTYPE_HIGHHIGHLIMIT uint32 = uint32(11124)
+const OpcuaNodeIdServices_LIMITALARMTYPE_HIGHLIMIT uint32 = uint32(11125)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LOWLIMIT uint32 = uint32(11126)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LOWLOWLIMIT uint32 = uint32(11127)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONCLASSID uint32 = uint32(11128)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11129)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_INPUTNODE uint32 = uint32(11130)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONCLASSID uint32 = uint32(11131)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11132)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_INPUTNODE uint32 = uint32(11133)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONCLASSID uint32 = uint32(11134)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11135)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_INPUTNODE uint32 = uint32(11136)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONCLASSID uint32 = uint32(11137)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11138)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_INPUTNODE uint32 = uint32(11139)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONCLASSID uint32 = uint32(11140)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11141)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_INPUTNODE uint32 = uint32(11142)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONCLASSID uint32 = uint32(11143)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11144)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_INPUTNODE uint32 = uint32(11145)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONCLASSID uint32 = uint32(11146)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11147)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_INPUTNODE uint32 = uint32(11148)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONCLASSID uint32 = uint32(11149)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11150)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_INPUTNODE uint32 = uint32(11151)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONCLASSID uint32 = uint32(11152)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11153)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_INPUTNODE uint32 = uint32(11154)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONCLASSID uint32 = uint32(11155)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11156)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_INPUTNODE uint32 = uint32(11157)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_NORMALSTATE uint32 = uint32(11158)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONCLASSID uint32 = uint32(11159)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11160)
+const OpcuaNodeIdServices_TRIPALARMTYPE_INPUTNODE uint32 = uint32(11161)
+const OpcuaNodeIdServices_TRIPALARMTYPE_NORMALSTATE uint32 = uint32(11162)
+const OpcuaNodeIdServices_BASECONDITIONCLASSTYPE uint32 = uint32(11163)
+const OpcuaNodeIdServices_PROCESSCONDITIONCLASSTYPE uint32 = uint32(11164)
+const OpcuaNodeIdServices_MAINTENANCECONDITIONCLASSTYPE uint32 = uint32(11165)
+const OpcuaNodeIdServices_SYSTEMCONDITIONCLASSTYPE uint32 = uint32(11166)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATECONFIGURATION_TREATUNCERTAINASBAD uint32 = uint32(11168)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATECONFIGURATION_PERCENTDATABAD uint32 = uint32(11169)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATECONFIGURATION_PERCENTDATAGOOD uint32 = uint32(11170)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATECONFIGURATION_USESLOPEDEXTRAPOLATION uint32 = uint32(11171)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_AGGREGATEFUNCTIONS uint32 = uint32(11172)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATIONTYPE uint32 = uint32(11187)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATIONTYPE_TREATUNCERTAINASBAD uint32 = uint32(11188)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATIONTYPE_PERCENTDATABAD uint32 = uint32(11189)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATIONTYPE_PERCENTDATAGOOD uint32 = uint32(11190)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATIONTYPE_USESLOPEDEXTRAPOLATION uint32 = uint32(11191)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES uint32 = uint32(11192)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_ACCESSHISTORYDATACAPABILITY uint32 = uint32(11193)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_INSERTDATACAPABILITY uint32 = uint32(11196)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_REPLACEDATACAPABILITY uint32 = uint32(11197)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_UPDATEDATACAPABILITY uint32 = uint32(11198)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_DELETERAWCAPABILITY uint32 = uint32(11199)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_DELETEATTIMECAPABILITY uint32 = uint32(11200)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_AGGREGATEFUNCTIONS uint32 = uint32(11201)
+const OpcuaNodeIdServices_HACONFIGURATION uint32 = uint32(11202)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATECONFIGURATION uint32 = uint32(11203)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATECONFIGURATION_TREATUNCERTAINASBAD uint32 = uint32(11204)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATECONFIGURATION_PERCENTDATABAD uint32 = uint32(11205)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATECONFIGURATION_PERCENTDATAGOOD uint32 = uint32(11206)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATECONFIGURATION_USESLOPEDEXTRAPOLATION uint32 = uint32(11207)
+const OpcuaNodeIdServices_HACONFIGURATION_STEPPED uint32 = uint32(11208)
+const OpcuaNodeIdServices_HACONFIGURATION_DEFINITION uint32 = uint32(11209)
+const OpcuaNodeIdServices_HACONFIGURATION_MAXTIMEINTERVAL uint32 = uint32(11210)
+const OpcuaNodeIdServices_HACONFIGURATION_MINTIMEINTERVAL uint32 = uint32(11211)
+const OpcuaNodeIdServices_HACONFIGURATION_EXCEPTIONDEVIATION uint32 = uint32(11212)
+const OpcuaNodeIdServices_HACONFIGURATION_EXCEPTIONDEVIATIONFORMAT uint32 = uint32(11213)
+const OpcuaNodeIdServices_ANNOTATIONS uint32 = uint32(11214)
+const OpcuaNodeIdServices_HISTORICALEVENTFILTER uint32 = uint32(11215)
+const OpcuaNodeIdServices_MODIFICATIONINFO uint32 = uint32(11216)
+const OpcuaNodeIdServices_HISTORYMODIFIEDDATA uint32 = uint32(11217)
+const OpcuaNodeIdServices_MODIFICATIONINFO_ENCODING_DEFAULTXML uint32 = uint32(11218)
+const OpcuaNodeIdServices_HISTORYMODIFIEDDATA_ENCODING_DEFAULTXML uint32 = uint32(11219)
+const OpcuaNodeIdServices_MODIFICATIONINFO_ENCODING_DEFAULTBINARY uint32 = uint32(11226)
+const OpcuaNodeIdServices_HISTORYMODIFIEDDATA_ENCODING_DEFAULTBINARY uint32 = uint32(11227)
+const OpcuaNodeIdServices_HISTORYUPDATETYPE uint32 = uint32(11234)
+const OpcuaNodeIdServices_MULTISTATEVALUEDISCRETETYPE uint32 = uint32(11238)
+const OpcuaNodeIdServices_MULTISTATEVALUEDISCRETETYPE_DEFINITION uint32 = uint32(11239)
+const OpcuaNodeIdServices_MULTISTATEVALUEDISCRETETYPE_VALUEPRECISION uint32 = uint32(11240)
+const OpcuaNodeIdServices_MULTISTATEVALUEDISCRETETYPE_ENUMVALUES uint32 = uint32(11241)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_ACCESSHISTORYEVENTSCAPABILITY uint32 = uint32(11242)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_MAXRETURNDATAVALUES uint32 = uint32(11268)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_MAXRETURNEVENTVALUES uint32 = uint32(11269)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_INSERTANNOTATIONCAPABILITY uint32 = uint32(11270)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_MAXRETURNDATAVALUES uint32 = uint32(11273)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_MAXRETURNEVENTVALUES uint32 = uint32(11274)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_INSERTANNOTATIONCAPABILITY uint32 = uint32(11275)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_INSERTEVENTCAPABILITY uint32 = uint32(11278)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_REPLACEEVENTCAPABILITY uint32 = uint32(11279)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_UPDATEEVENTCAPABILITY uint32 = uint32(11280)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_INSERTEVENTCAPABILITY uint32 = uint32(11281)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_REPLACEEVENTCAPABILITY uint32 = uint32(11282)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_UPDATEEVENTCAPABILITY uint32 = uint32(11283)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_TIMEAVERAGE2 uint32 = uint32(11285)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MINIMUM2 uint32 = uint32(11286)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MAXIMUM2 uint32 = uint32(11287)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_RANGE2 uint32 = uint32(11288)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_WORSTQUALITY2 uint32 = uint32(11292)
+const OpcuaNodeIdServices_PERFORMUPDATETYPE uint32 = uint32(11293)
+const OpcuaNodeIdServices_UPDATESTRUCTUREDATADETAILS uint32 = uint32(11295)
+const OpcuaNodeIdServices_UPDATESTRUCTUREDATADETAILS_ENCODING_DEFAULTXML uint32 = uint32(11296)
+const OpcuaNodeIdServices_UPDATESTRUCTUREDATADETAILS_ENCODING_DEFAULTBINARY uint32 = uint32(11300)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_TOTAL2 uint32 = uint32(11304)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MINIMUMACTUALTIME2 uint32 = uint32(11305)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_MAXIMUMACTUALTIME2 uint32 = uint32(11306)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DURATIONINSTATEZERO uint32 = uint32(11307)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DURATIONINSTATENONZERO uint32 = uint32(11308)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY_CURRENTSERVERID uint32 = uint32(11312)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY_REDUNDANTSERVERARRAY uint32 = uint32(11313)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY_SERVERURIARRAY uint32 = uint32(11314)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVEDTOTIMEDSHELVED_TRANSITIONNUMBER uint32 = uint32(11322)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_UNSHELVEDTOONESHOTSHELVED_TRANSITIONNUMBER uint32 = uint32(11323)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVEDTOUNSHELVED_TRANSITIONNUMBER uint32 = uint32(11324)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_TIMEDSHELVEDTOONESHOTSHELVED_TRANSITIONNUMBER uint32 = uint32(11325)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVEDTOUNSHELVED_TRANSITIONNUMBER uint32 = uint32(11326)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_ONESHOTSHELVEDTOTIMEDSHELVED_TRANSITIONNUMBER uint32 = uint32(11327)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWLOWTOLOW_TRANSITIONNUMBER uint32 = uint32(11340)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LOWTOLOWLOW_TRANSITIONNUMBER uint32 = uint32(11341)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHHIGHTOHIGH_TRANSITIONNUMBER uint32 = uint32(11342)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_HIGHTOHIGHHIGH_TRANSITIONNUMBER uint32 = uint32(11343)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_STANDARDDEVIATIONSAMPLE uint32 = uint32(11426)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_STANDARDDEVIATIONPOPULATION uint32 = uint32(11427)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_VARIANCESAMPLE uint32 = uint32(11428)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_VARIANCEPOPULATION uint32 = uint32(11429)
+const OpcuaNodeIdServices_ENUMSTRINGS uint32 = uint32(11432)
+const OpcuaNodeIdServices_VALUEASTEXT uint32 = uint32(11433)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE uint32 = uint32(11436)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_EVENTID uint32 = uint32(11437)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_EVENTTYPE uint32 = uint32(11438)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_SOURCENODE uint32 = uint32(11439)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_SOURCENAME uint32 = uint32(11440)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_TIME uint32 = uint32(11441)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_RECEIVETIME uint32 = uint32(11442)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_LOCALTIME uint32 = uint32(11443)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_MESSAGE uint32 = uint32(11444)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_SEVERITY uint32 = uint32(11445)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE uint32 = uint32(11446)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_EVENTID uint32 = uint32(11447)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_EVENTTYPE uint32 = uint32(11448)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_SOURCENODE uint32 = uint32(11449)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_SOURCENAME uint32 = uint32(11450)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_TIME uint32 = uint32(11451)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_RECEIVETIME uint32 = uint32(11452)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_LOCALTIME uint32 = uint32(11453)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_MESSAGE uint32 = uint32(11454)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_SEVERITY uint32 = uint32(11455)
+const OpcuaNodeIdServices_TRANSITIONVARIABLETYPE_EFFECTIVETRANSITIONTIME uint32 = uint32(11456)
+const OpcuaNodeIdServices_FINITETRANSITIONVARIABLETYPE_EFFECTIVETRANSITIONTIME uint32 = uint32(11457)
+const OpcuaNodeIdServices_STATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11458)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11459)
+const OpcuaNodeIdServices_TRANSITIONEVENTTYPE_TRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11460)
+const OpcuaNodeIdServices_MULTISTATEVALUEDISCRETETYPE_VALUEASTEXT uint32 = uint32(11461)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONEVENTTYPE_TRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11462)
+const OpcuaNodeIdServices_PROGRAMTRANSITIONAUDITEVENTTYPE_TRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11463)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11464)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11465)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11466)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11467)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11468)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11469)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11470)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11471)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11472)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11473)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11474)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11475)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11476)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11477)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11478)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11479)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11480)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11481)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11482)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11483)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_SECURECHANNELID uint32 = uint32(11485)
+const OpcuaNodeIdServices_OPTIONSETTYPE uint32 = uint32(11487)
+const OpcuaNodeIdServices_OPTIONSETTYPE_OPTIONSETVALUES uint32 = uint32(11488)
+const OpcuaNodeIdServices_SERVERTYPE_GETMONITOREDITEMS uint32 = uint32(11489)
+const OpcuaNodeIdServices_SERVERTYPE_GETMONITOREDITEMS_INPUTARGUMENTS uint32 = uint32(11490)
+const OpcuaNodeIdServices_SERVERTYPE_GETMONITOREDITEMS_OUTPUTARGUMENTS uint32 = uint32(11491)
+const OpcuaNodeIdServices_SERVER_GETMONITOREDITEMS uint32 = uint32(11492)
+const OpcuaNodeIdServices_SERVER_GETMONITOREDITEMS_INPUTARGUMENTS uint32 = uint32(11493)
+const OpcuaNodeIdServices_SERVER_GETMONITOREDITEMS_OUTPUTARGUMENTS uint32 = uint32(11494)
+const OpcuaNodeIdServices_GETMONITOREDITEMSMETHODTYPE uint32 = uint32(11495)
+const OpcuaNodeIdServices_GETMONITOREDITEMSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11496)
+const OpcuaNodeIdServices_GETMONITOREDITEMSMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(11497)
+const OpcuaNodeIdServices_MAXSTRINGLENGTH uint32 = uint32(11498)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_STARTOFARCHIVE uint32 = uint32(11499)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_STARTOFONLINEARCHIVE uint32 = uint32(11500)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_DELETEEVENTCAPABILITY uint32 = uint32(11501)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_DELETEEVENTCAPABILITY uint32 = uint32(11502)
+const OpcuaNodeIdServices_HACONFIGURATION_STARTOFARCHIVE uint32 = uint32(11503)
+const OpcuaNodeIdServices_HACONFIGURATION_STARTOFONLINEARCHIVE uint32 = uint32(11504)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_STARTBOUND uint32 = uint32(11505)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_ENDBOUND uint32 = uint32(11506)
+const OpcuaNodeIdServices_AGGREGATEFUNCTION_DELTABOUNDS uint32 = uint32(11507)
+const OpcuaNodeIdServices_MODELLINGRULE_OPTIONALPLACEHOLDER uint32 = uint32(11508)
+const OpcuaNodeIdServices_MODELLINGRULE_MANDATORYPLACEHOLDER uint32 = uint32(11510)
+const OpcuaNodeIdServices_MAXARRAYLENGTH uint32 = uint32(11512)
+const OpcuaNodeIdServices_ENGINEERINGUNITS uint32 = uint32(11513)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXARRAYLENGTH uint32 = uint32(11514)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXSTRINGLENGTH uint32 = uint32(11515)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS uint32 = uint32(11516)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERREAD uint32 = uint32(11517)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERWRITE uint32 = uint32(11519)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERMETHODCALL uint32 = uint32(11521)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERBROWSE uint32 = uint32(11522)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERREGISTERNODES uint32 = uint32(11523)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERTRANSLATEBROWSEPATHSTONODEIDS uint32 = uint32(11524)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERNODEMANAGEMENT uint32 = uint32(11525)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXMONITOREDITEMSPERCALL uint32 = uint32(11526)
+const OpcuaNodeIdServices_SERVERTYPE_NAMESPACES uint32 = uint32(11527)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXARRAYLENGTH uint32 = uint32(11549)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXSTRINGLENGTH uint32 = uint32(11550)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS uint32 = uint32(11551)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERREAD uint32 = uint32(11552)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERWRITE uint32 = uint32(11554)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERMETHODCALL uint32 = uint32(11556)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERBROWSE uint32 = uint32(11557)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERREGISTERNODES uint32 = uint32(11558)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERTRANSLATEBROWSEPATHSTONODEIDS uint32 = uint32(11559)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERNODEMANAGEMENT uint32 = uint32(11560)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXMONITOREDITEMSPERCALL uint32 = uint32(11561)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_VENDORCAPABILITY_PLACEHOLDER uint32 = uint32(11562)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE uint32 = uint32(11564)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERREAD uint32 = uint32(11565)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERWRITE uint32 = uint32(11567)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERMETHODCALL uint32 = uint32(11569)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERBROWSE uint32 = uint32(11570)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERREGISTERNODES uint32 = uint32(11571)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERTRANSLATEBROWSEPATHSTONODEIDS uint32 = uint32(11572)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERNODEMANAGEMENT uint32 = uint32(11573)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXMONITOREDITEMSPERCALL uint32 = uint32(11574)
+const OpcuaNodeIdServices_FILETYPE uint32 = uint32(11575)
+const OpcuaNodeIdServices_FILETYPE_SIZE uint32 = uint32(11576)
+const OpcuaNodeIdServices_FILETYPE_OPENCOUNT uint32 = uint32(11579)
+const OpcuaNodeIdServices_FILETYPE_OPEN uint32 = uint32(11580)
+const OpcuaNodeIdServices_FILETYPE_OPEN_INPUTARGUMENTS uint32 = uint32(11581)
+const OpcuaNodeIdServices_FILETYPE_OPEN_OUTPUTARGUMENTS uint32 = uint32(11582)
+const OpcuaNodeIdServices_FILETYPE_CLOSE uint32 = uint32(11583)
+const OpcuaNodeIdServices_FILETYPE_CLOSE_INPUTARGUMENTS uint32 = uint32(11584)
+const OpcuaNodeIdServices_FILETYPE_READ uint32 = uint32(11585)
+const OpcuaNodeIdServices_FILETYPE_READ_INPUTARGUMENTS uint32 = uint32(11586)
+const OpcuaNodeIdServices_FILETYPE_READ_OUTPUTARGUMENTS uint32 = uint32(11587)
+const OpcuaNodeIdServices_FILETYPE_WRITE uint32 = uint32(11588)
+const OpcuaNodeIdServices_FILETYPE_WRITE_INPUTARGUMENTS uint32 = uint32(11589)
+const OpcuaNodeIdServices_FILETYPE_GETPOSITION uint32 = uint32(11590)
+const OpcuaNodeIdServices_FILETYPE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(11591)
+const OpcuaNodeIdServices_FILETYPE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(11592)
+const OpcuaNodeIdServices_FILETYPE_SETPOSITION uint32 = uint32(11593)
+const OpcuaNodeIdServices_FILETYPE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(11594)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE uint32 = uint32(11595)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_SIZE uint32 = uint32(11596)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_OPENCOUNT uint32 = uint32(11599)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_OPEN uint32 = uint32(11600)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_OPEN_INPUTARGUMENTS uint32 = uint32(11601)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_OPEN_OUTPUTARGUMENTS uint32 = uint32(11602)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_CLOSE uint32 = uint32(11603)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_CLOSE_INPUTARGUMENTS uint32 = uint32(11604)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_READ uint32 = uint32(11605)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_READ_INPUTARGUMENTS uint32 = uint32(11606)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_READ_OUTPUTARGUMENTS uint32 = uint32(11607)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_WRITE uint32 = uint32(11608)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_WRITE_INPUTARGUMENTS uint32 = uint32(11609)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_GETPOSITION uint32 = uint32(11610)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(11611)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(11612)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_SETPOSITION uint32 = uint32(11613)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(11614)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_EXPORTNAMESPACE uint32 = uint32(11615)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE uint32 = uint32(11616)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEURI uint32 = uint32(11617)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEVERSION uint32 = uint32(11618)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEPUBLICATIONDATE uint32 = uint32(11619)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_ISNAMESPACESUBSET uint32 = uint32(11620)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_STATICNODEIDTYPES uint32 = uint32(11621)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_STATICNUMERICNODEIDRANGE uint32 = uint32(11622)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_STATICSTRINGNODEIDPATTERN uint32 = uint32(11623)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE uint32 = uint32(11624)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_SIZE uint32 = uint32(11625)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_OPENCOUNT uint32 = uint32(11628)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_OPEN uint32 = uint32(11629)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_OPEN_INPUTARGUMENTS uint32 = uint32(11630)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_OPEN_OUTPUTARGUMENTS uint32 = uint32(11631)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_CLOSE uint32 = uint32(11632)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_CLOSE_INPUTARGUMENTS uint32 = uint32(11633)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_READ uint32 = uint32(11634)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_READ_INPUTARGUMENTS uint32 = uint32(11635)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_READ_OUTPUTARGUMENTS uint32 = uint32(11636)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_WRITE uint32 = uint32(11637)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_WRITE_INPUTARGUMENTS uint32 = uint32(11638)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_GETPOSITION uint32 = uint32(11639)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(11640)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(11641)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_SETPOSITION uint32 = uint32(11642)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(11643)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_EXPORTNAMESPACE uint32 = uint32(11644)
+const OpcuaNodeIdServices_NAMESPACESTYPE uint32 = uint32(11645)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER uint32 = uint32(11646)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEURI uint32 = uint32(11647)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEVERSION uint32 = uint32(11648)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEPUBLICATIONDATE uint32 = uint32(11649)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_ISNAMESPACESUBSET uint32 = uint32(11650)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_STATICNODEIDTYPES uint32 = uint32(11651)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_STATICNUMERICNODEIDRANGE uint32 = uint32(11652)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_STATICSTRINGNODEIDPATTERN uint32 = uint32(11653)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE uint32 = uint32(11654)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_SIZE uint32 = uint32(11655)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_OPENCOUNT uint32 = uint32(11658)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_OPEN uint32 = uint32(11659)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_OPEN_INPUTARGUMENTS uint32 = uint32(11660)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_OPEN_OUTPUTARGUMENTS uint32 = uint32(11661)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_CLOSE uint32 = uint32(11662)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_CLOSE_INPUTARGUMENTS uint32 = uint32(11663)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_READ uint32 = uint32(11664)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_READ_INPUTARGUMENTS uint32 = uint32(11665)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_READ_OUTPUTARGUMENTS uint32 = uint32(11666)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_WRITE uint32 = uint32(11667)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_WRITE_INPUTARGUMENTS uint32 = uint32(11668)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_GETPOSITION uint32 = uint32(11669)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(11670)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(11671)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_SETPOSITION uint32 = uint32(11672)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(11673)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_EXPORTNAMESPACE uint32 = uint32(11674)
+const OpcuaNodeIdServices_SYSTEMSTATUSCHANGEEVENTTYPE_SYSTEMSTATE uint32 = uint32(11696)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSTYPE_SAMPLEDMONITOREDITEMSCOUNT uint32 = uint32(11697)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSTYPE_MAXSAMPLEDMONITOREDITEMSCOUNT uint32 = uint32(11698)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSTYPE_DISABLEDMONITOREDITEMSSAMPLINGCOUNT uint32 = uint32(11699)
+const OpcuaNodeIdServices_OPTIONSETTYPE_BITMASK uint32 = uint32(11701)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXARRAYLENGTH uint32 = uint32(11702)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXSTRINGLENGTH uint32 = uint32(11703)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS uint32 = uint32(11704)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERREAD uint32 = uint32(11705)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERWRITE uint32 = uint32(11707)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERMETHODCALL uint32 = uint32(11709)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERBROWSE uint32 = uint32(11710)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERREGISTERNODES uint32 = uint32(11711)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERTRANSLATEBROWSEPATHSTONODEIDS uint32 = uint32(11712)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERNODEMANAGEMENT uint32 = uint32(11713)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXMONITOREDITEMSPERCALL uint32 = uint32(11714)
+const OpcuaNodeIdServices_SERVER_NAMESPACES uint32 = uint32(11715)
+const OpcuaNodeIdServices_BITFIELDMASKDATATYPE uint32 = uint32(11737)
+const OpcuaNodeIdServices_OPENMETHODTYPE uint32 = uint32(11738)
+const OpcuaNodeIdServices_OPENMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11739)
+const OpcuaNodeIdServices_OPENMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(11740)
+const OpcuaNodeIdServices_CLOSEMETHODTYPE uint32 = uint32(11741)
+const OpcuaNodeIdServices_CLOSEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11742)
+const OpcuaNodeIdServices_READMETHODTYPE uint32 = uint32(11743)
+const OpcuaNodeIdServices_READMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11744)
+const OpcuaNodeIdServices_READMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(11745)
+const OpcuaNodeIdServices_WRITEMETHODTYPE uint32 = uint32(11746)
+const OpcuaNodeIdServices_WRITEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11747)
+const OpcuaNodeIdServices_GETPOSITIONMETHODTYPE uint32 = uint32(11748)
+const OpcuaNodeIdServices_GETPOSITIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11749)
+const OpcuaNodeIdServices_GETPOSITIONMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(11750)
+const OpcuaNodeIdServices_SETPOSITIONMETHODTYPE uint32 = uint32(11751)
+const OpcuaNodeIdServices_SETPOSITIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(11752)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE uint32 = uint32(11753)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_EVENTID uint32 = uint32(11754)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_EVENTTYPE uint32 = uint32(11755)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SOURCENODE uint32 = uint32(11756)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SOURCENAME uint32 = uint32(11757)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_TIME uint32 = uint32(11758)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_RECEIVETIME uint32 = uint32(11759)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LOCALTIME uint32 = uint32(11760)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_MESSAGE uint32 = uint32(11761)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SEVERITY uint32 = uint32(11762)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONCLASSID uint32 = uint32(11763)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(11764)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONNAME uint32 = uint32(11765)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_BRANCHID uint32 = uint32(11766)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_RETAIN uint32 = uint32(11767)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE uint32 = uint32(11768)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(11769)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(11770)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(11771)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11772)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(11773)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(11774)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(11775)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(11776)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_QUALITY uint32 = uint32(11777)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(11778)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LASTSEVERITY uint32 = uint32(11779)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(11780)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_COMMENT uint32 = uint32(11781)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(11782)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CLIENTUSERID uint32 = uint32(11783)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_DISABLE uint32 = uint32(11784)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ENABLE uint32 = uint32(11785)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ADDCOMMENT uint32 = uint32(11786)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(11787)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONREFRESH uint32 = uint32(11788)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(11789)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE uint32 = uint32(11790)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_ID uint32 = uint32(11791)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(11792)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(11793)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11794)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(11795)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(11796)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(11797)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(11798)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE uint32 = uint32(11799)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(11800)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(11801)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(11802)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11803)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(11804)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(11805)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(11806)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(11807)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKNOWLEDGE uint32 = uint32(11808)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(11809)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRM uint32 = uint32(11810)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(11811)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE uint32 = uint32(11812)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_ID uint32 = uint32(11813)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(11814)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(11815)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11816)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(11817)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(11818)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(11819)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(11820)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_INPUTNODE uint32 = uint32(11821)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(11822)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(11823)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(11824)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(11825)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11826)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(11827)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(11828)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(11829)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(11830)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE uint32 = uint32(11831)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(11832)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(11833)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(11834)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(11835)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(11836)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(11837)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(11838)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(11839)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(11840)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(11841)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(11842)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(11843)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(11844)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(11845)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(11846)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(11847)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(11848)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_MAXTIMESHELVED uint32 = uint32(11849)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_NORMALSTATE uint32 = uint32(11850)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_COMMENT uint32 = uint32(11851)
+const OpcuaNodeIdServices_AUDITCONDITIONRESPONDEVENTTYPE_SELECTEDRESPONSE uint32 = uint32(11852)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_COMMENT uint32 = uint32(11853)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_COMMENT uint32 = uint32(11854)
+const OpcuaNodeIdServices_AUDITCONDITIONSHELVINGEVENTTYPE_SHELVINGTIME uint32 = uint32(11855)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE uint32 = uint32(11856)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_EVENTID uint32 = uint32(11857)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_EVENTTYPE uint32 = uint32(11858)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_SOURCENODE uint32 = uint32(11859)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_SOURCENAME uint32 = uint32(11860)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_TIME uint32 = uint32(11861)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_RECEIVETIME uint32 = uint32(11862)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_LOCALTIME uint32 = uint32(11863)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_MESSAGE uint32 = uint32(11864)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_SEVERITY uint32 = uint32(11865)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(11866)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_STATUS uint32 = uint32(11867)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_SERVERID uint32 = uint32(11868)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(11869)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_CLIENTUSERID uint32 = uint32(11870)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_METHODID uint32 = uint32(11871)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_INPUTARGUMENTS uint32 = uint32(11872)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_OLDSTATEID uint32 = uint32(11873)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_NEWSTATEID uint32 = uint32(11874)
+const OpcuaNodeIdServices_AUDITPROGRAMTRANSITIONEVENTTYPE_TRANSITIONNUMBER uint32 = uint32(11875)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_AGGREGATEFUNCTIONS uint32 = uint32(11876)
+const OpcuaNodeIdServices_HACONFIGURATION_AGGREGATEFUNCTIONS uint32 = uint32(11877)
+const OpcuaNodeIdServices_NODECLASS_ENUMVALUES uint32 = uint32(11878)
+const OpcuaNodeIdServices_INSTANCENODE uint32 = uint32(11879)
+const OpcuaNodeIdServices_TYPENODE uint32 = uint32(11880)
+const OpcuaNodeIdServices_NODEATTRIBUTESMASK_ENUMVALUES uint32 = uint32(11881)
+const OpcuaNodeIdServices_BROWSERESULTMASK_ENUMVALUES uint32 = uint32(11883)
+const OpcuaNodeIdServices_HISTORYUPDATETYPE_ENUMVALUES uint32 = uint32(11884)
+const OpcuaNodeIdServices_PERFORMUPDATETYPE_ENUMVALUES uint32 = uint32(11885)
+const OpcuaNodeIdServices_INSTANCENODE_ENCODING_DEFAULTXML uint32 = uint32(11887)
+const OpcuaNodeIdServices_TYPENODE_ENCODING_DEFAULTXML uint32 = uint32(11888)
+const OpcuaNodeIdServices_INSTANCENODE_ENCODING_DEFAULTBINARY uint32 = uint32(11889)
+const OpcuaNodeIdServices_TYPENODE_ENCODING_DEFAULTBINARY uint32 = uint32(11890)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSOBJECTTYPE_SESSIONDIAGNOSTICS_UNAUTHORIZEDREQUESTCOUNT uint32 = uint32(11891)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSVARIABLETYPE_UNAUTHORIZEDREQUESTCOUNT uint32 = uint32(11892)
+const OpcuaNodeIdServices_OPENFILEMODE uint32 = uint32(11939)
+const OpcuaNodeIdServices_OPENFILEMODE_ENUMVALUES uint32 = uint32(11940)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREVERBMASK uint32 = uint32(11941)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREVERBMASK_ENUMVALUES uint32 = uint32(11942)
+const OpcuaNodeIdServices_ENDPOINTURLLISTDATATYPE uint32 = uint32(11943)
+const OpcuaNodeIdServices_NETWORKGROUPDATATYPE uint32 = uint32(11944)
+const OpcuaNodeIdServices_NONTRANSPARENTNETWORKREDUNDANCYTYPE uint32 = uint32(11945)
+const OpcuaNodeIdServices_NONTRANSPARENTNETWORKREDUNDANCYTYPE_REDUNDANCYSUPPORT uint32 = uint32(11946)
+const OpcuaNodeIdServices_NONTRANSPARENTNETWORKREDUNDANCYTYPE_SERVERURIARRAY uint32 = uint32(11947)
+const OpcuaNodeIdServices_NONTRANSPARENTNETWORKREDUNDANCYTYPE_SERVERNETWORKGROUPS uint32 = uint32(11948)
+const OpcuaNodeIdServices_ENDPOINTURLLISTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(11949)
+const OpcuaNodeIdServices_NETWORKGROUPDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(11950)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTURLLISTDATATYPE uint32 = uint32(11951)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTURLLISTDATATYPE_DATATYPEVERSION uint32 = uint32(11952)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTURLLISTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(11953)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_NETWORKGROUPDATATYPE uint32 = uint32(11954)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_NETWORKGROUPDATATYPE_DATATYPEVERSION uint32 = uint32(11955)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_NETWORKGROUPDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(11956)
+const OpcuaNodeIdServices_ENDPOINTURLLISTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(11957)
+const OpcuaNodeIdServices_NETWORKGROUPDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(11958)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTURLLISTDATATYPE uint32 = uint32(11959)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTURLLISTDATATYPE_DATATYPEVERSION uint32 = uint32(11960)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTURLLISTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(11961)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_NETWORKGROUPDATATYPE uint32 = uint32(11962)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_NETWORKGROUPDATATYPE_DATATYPEVERSION uint32 = uint32(11963)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_NETWORKGROUPDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(11964)
+const OpcuaNodeIdServices_ARRAYITEMTYPE uint32 = uint32(12021)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_DEFINITION uint32 = uint32(12022)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_VALUEPRECISION uint32 = uint32(12023)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12024)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_EURANGE uint32 = uint32(12025)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12026)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_TITLE uint32 = uint32(12027)
+const OpcuaNodeIdServices_ARRAYITEMTYPE_AXISSCALETYPE uint32 = uint32(12028)
+const OpcuaNodeIdServices_YARRAYITEMTYPE uint32 = uint32(12029)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_DEFINITION uint32 = uint32(12030)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_VALUEPRECISION uint32 = uint32(12031)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12032)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_EURANGE uint32 = uint32(12033)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12034)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_TITLE uint32 = uint32(12035)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_AXISSCALETYPE uint32 = uint32(12036)
+const OpcuaNodeIdServices_YARRAYITEMTYPE_XAXISDEFINITION uint32 = uint32(12037)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE uint32 = uint32(12038)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_DEFINITION uint32 = uint32(12039)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_VALUEPRECISION uint32 = uint32(12040)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12041)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_EURANGE uint32 = uint32(12042)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12043)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_TITLE uint32 = uint32(12044)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_AXISSCALETYPE uint32 = uint32(12045)
+const OpcuaNodeIdServices_XYARRAYITEMTYPE_XAXISDEFINITION uint32 = uint32(12046)
+const OpcuaNodeIdServices_IMAGEITEMTYPE uint32 = uint32(12047)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_DEFINITION uint32 = uint32(12048)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_VALUEPRECISION uint32 = uint32(12049)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12050)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_EURANGE uint32 = uint32(12051)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12052)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_TITLE uint32 = uint32(12053)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_AXISSCALETYPE uint32 = uint32(12054)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_XAXISDEFINITION uint32 = uint32(12055)
+const OpcuaNodeIdServices_IMAGEITEMTYPE_YAXISDEFINITION uint32 = uint32(12056)
+const OpcuaNodeIdServices_CUBEITEMTYPE uint32 = uint32(12057)
+const OpcuaNodeIdServices_CUBEITEMTYPE_DEFINITION uint32 = uint32(12058)
+const OpcuaNodeIdServices_CUBEITEMTYPE_VALUEPRECISION uint32 = uint32(12059)
+const OpcuaNodeIdServices_CUBEITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12060)
+const OpcuaNodeIdServices_CUBEITEMTYPE_EURANGE uint32 = uint32(12061)
+const OpcuaNodeIdServices_CUBEITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12062)
+const OpcuaNodeIdServices_CUBEITEMTYPE_TITLE uint32 = uint32(12063)
+const OpcuaNodeIdServices_CUBEITEMTYPE_AXISSCALETYPE uint32 = uint32(12064)
+const OpcuaNodeIdServices_CUBEITEMTYPE_XAXISDEFINITION uint32 = uint32(12065)
+const OpcuaNodeIdServices_CUBEITEMTYPE_YAXISDEFINITION uint32 = uint32(12066)
+const OpcuaNodeIdServices_CUBEITEMTYPE_ZAXISDEFINITION uint32 = uint32(12067)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE uint32 = uint32(12068)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_DEFINITION uint32 = uint32(12069)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_VALUEPRECISION uint32 = uint32(12070)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_INSTRUMENTRANGE uint32 = uint32(12071)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_EURANGE uint32 = uint32(12072)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_ENGINEERINGUNITS uint32 = uint32(12073)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_TITLE uint32 = uint32(12074)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_AXISSCALETYPE uint32 = uint32(12075)
+const OpcuaNodeIdServices_NDIMENSIONARRAYITEMTYPE_AXISDEFINITION uint32 = uint32(12076)
+const OpcuaNodeIdServices_AXISSCALEENUMERATION uint32 = uint32(12077)
+const OpcuaNodeIdServices_AXISSCALEENUMERATION_ENUMSTRINGS uint32 = uint32(12078)
+const OpcuaNodeIdServices_AXISINFORMATION uint32 = uint32(12079)
+const OpcuaNodeIdServices_XVTYPE uint32 = uint32(12080)
+const OpcuaNodeIdServices_AXISINFORMATION_ENCODING_DEFAULTXML uint32 = uint32(12081)
+const OpcuaNodeIdServices_XVTYPE_ENCODING_DEFAULTXML uint32 = uint32(12082)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AXISINFORMATION uint32 = uint32(12083)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AXISINFORMATION_DATATYPEVERSION uint32 = uint32(12084)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_AXISINFORMATION_DICTIONARYFRAGMENT uint32 = uint32(12085)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_XVTYPE uint32 = uint32(12086)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_XVTYPE_DATATYPEVERSION uint32 = uint32(12087)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_XVTYPE_DICTIONARYFRAGMENT uint32 = uint32(12088)
+const OpcuaNodeIdServices_AXISINFORMATION_ENCODING_DEFAULTBINARY uint32 = uint32(12089)
+const OpcuaNodeIdServices_XVTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(12090)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AXISINFORMATION uint32 = uint32(12091)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AXISINFORMATION_DATATYPEVERSION uint32 = uint32(12092)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_AXISINFORMATION_DICTIONARYFRAGMENT uint32 = uint32(12093)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_XVTYPE uint32 = uint32(12094)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_XVTYPE_DATATYPEVERSION uint32 = uint32(12095)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_XVTYPE_DICTIONARYFRAGMENT uint32 = uint32(12096)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER uint32 = uint32(12097)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS uint32 = uint32(12098)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SESSIONID uint32 = uint32(12099)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SESSIONNAME uint32 = uint32(12100)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CLIENTDESCRIPTION uint32 = uint32(12101)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SERVERURI uint32 = uint32(12102)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_ENDPOINTURL uint32 = uint32(12103)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_LOCALEIDS uint32 = uint32(12104)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_ACTUALSESSIONTIMEOUT uint32 = uint32(12105)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_MAXRESPONSEMESSAGESIZE uint32 = uint32(12106)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CLIENTCONNECTIONTIME uint32 = uint32(12107)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CLIENTLASTCONTACTTIME uint32 = uint32(12108)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CURRENTSUBSCRIPTIONSCOUNT uint32 = uint32(12109)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CURRENTMONITOREDITEMSCOUNT uint32 = uint32(12110)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CURRENTPUBLISHREQUESTSINQUEUE uint32 = uint32(12111)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_TOTALREQUESTCOUNT uint32 = uint32(12112)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_UNAUTHORIZEDREQUESTCOUNT uint32 = uint32(12113)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_READCOUNT uint32 = uint32(12114)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_HISTORYREADCOUNT uint32 = uint32(12115)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_WRITECOUNT uint32 = uint32(12116)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_HISTORYUPDATECOUNT uint32 = uint32(12117)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CALLCOUNT uint32 = uint32(12118)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CREATEMONITOREDITEMSCOUNT uint32 = uint32(12119)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_MODIFYMONITOREDITEMSCOUNT uint32 = uint32(12120)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SETMONITORINGMODECOUNT uint32 = uint32(12121)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SETTRIGGERINGCOUNT uint32 = uint32(12122)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_DELETEMONITOREDITEMSCOUNT uint32 = uint32(12123)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_CREATESUBSCRIPTIONCOUNT uint32 = uint32(12124)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_MODIFYSUBSCRIPTIONCOUNT uint32 = uint32(12125)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_SETPUBLISHINGMODECOUNT uint32 = uint32(12126)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_PUBLISHCOUNT uint32 = uint32(12127)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_REPUBLISHCOUNT uint32 = uint32(12128)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_TRANSFERSUBSCRIPTIONSCOUNT uint32 = uint32(12129)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_DELETESUBSCRIPTIONSCOUNT uint32 = uint32(12130)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_ADDNODESCOUNT uint32 = uint32(12131)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_ADDREFERENCESCOUNT uint32 = uint32(12132)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_DELETENODESCOUNT uint32 = uint32(12133)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_DELETEREFERENCESCOUNT uint32 = uint32(12134)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_BROWSECOUNT uint32 = uint32(12135)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_BROWSENEXTCOUNT uint32 = uint32(12136)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_TRANSLATEBROWSEPATHSTONODEIDSCOUNT uint32 = uint32(12137)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_QUERYFIRSTCOUNT uint32 = uint32(12138)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_QUERYNEXTCOUNT uint32 = uint32(12139)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_REGISTERNODESCOUNT uint32 = uint32(12140)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONDIAGNOSTICS_UNREGISTERNODESCOUNT uint32 = uint32(12141)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS uint32 = uint32(12142)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_SESSIONID uint32 = uint32(12143)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDOFSESSION uint32 = uint32(12144)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDHISTORY uint32 = uint32(12145)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_AUTHENTICATIONMECHANISM uint32 = uint32(12146)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_ENCODING uint32 = uint32(12147)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_TRANSPORTPROTOCOL uint32 = uint32(12148)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_SECURITYMODE uint32 = uint32(12149)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_SECURITYPOLICYURI uint32 = uint32(12150)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SESSIONSECURITYDIAGNOSTICS_CLIENTCERTIFICATE uint32 = uint32(12151)
+const OpcuaNodeIdServices_SESSIONSDIAGNOSTICSSUMMARYTYPE_CLIENTNAME_PLACEHOLDER_SUBSCRIPTIONDIAGNOSTICSARRAY uint32 = uint32(12152)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYREADDATA uint32 = uint32(12153)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYREADEVENTS uint32 = uint32(12154)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEDATA uint32 = uint32(12155)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEEVENTS uint32 = uint32(12156)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERHISTORYREADDATA uint32 = uint32(12157)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERHISTORYREADEVENTS uint32 = uint32(12158)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEDATA uint32 = uint32(12159)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEEVENTS uint32 = uint32(12160)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERHISTORYREADDATA uint32 = uint32(12161)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERHISTORYREADEVENTS uint32 = uint32(12162)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERHISTORYUPDATEDATA uint32 = uint32(12163)
+const OpcuaNodeIdServices_OPERATIONLIMITSTYPE_MAXNODESPERHISTORYUPDATEEVENTS uint32 = uint32(12164)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYREADDATA uint32 = uint32(12165)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYREADEVENTS uint32 = uint32(12166)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEDATA uint32 = uint32(12167)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_OPERATIONLIMITS_MAXNODESPERHISTORYUPDATEEVENTS uint32 = uint32(12168)
+const OpcuaNodeIdServices_NAMINGRULETYPE_ENUMVALUES uint32 = uint32(12169)
+const OpcuaNodeIdServices_VIEWVERSION uint32 = uint32(12170)
+const OpcuaNodeIdServices_COMPLEXNUMBERTYPE uint32 = uint32(12171)
+const OpcuaNodeIdServices_DOUBLECOMPLEXNUMBERTYPE uint32 = uint32(12172)
+const OpcuaNodeIdServices_COMPLEXNUMBERTYPE_ENCODING_DEFAULTXML uint32 = uint32(12173)
+const OpcuaNodeIdServices_DOUBLECOMPLEXNUMBERTYPE_ENCODING_DEFAULTXML uint32 = uint32(12174)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_COMPLEXNUMBERTYPE uint32 = uint32(12175)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_COMPLEXNUMBERTYPE_DATATYPEVERSION uint32 = uint32(12176)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_COMPLEXNUMBERTYPE_DICTIONARYFRAGMENT uint32 = uint32(12177)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DOUBLECOMPLEXNUMBERTYPE uint32 = uint32(12178)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DOUBLECOMPLEXNUMBERTYPE_DATATYPEVERSION uint32 = uint32(12179)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DOUBLECOMPLEXNUMBERTYPE_DICTIONARYFRAGMENT uint32 = uint32(12180)
+const OpcuaNodeIdServices_COMPLEXNUMBERTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(12181)
+const OpcuaNodeIdServices_DOUBLECOMPLEXNUMBERTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(12182)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_COMPLEXNUMBERTYPE uint32 = uint32(12183)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_COMPLEXNUMBERTYPE_DATATYPEVERSION uint32 = uint32(12184)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_COMPLEXNUMBERTYPE_DICTIONARYFRAGMENT uint32 = uint32(12185)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DOUBLECOMPLEXNUMBERTYPE uint32 = uint32(12186)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DOUBLECOMPLEXNUMBERTYPE_DATATYPEVERSION uint32 = uint32(12187)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DOUBLECOMPLEXNUMBERTYPE_DICTIONARYFRAGMENT uint32 = uint32(12188)
+const OpcuaNodeIdServices_SERVERONNETWORK uint32 = uint32(12189)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKREQUEST uint32 = uint32(12190)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKRESPONSE uint32 = uint32(12191)
+const OpcuaNodeIdServices_REGISTERSERVER2REQUEST uint32 = uint32(12193)
+const OpcuaNodeIdServices_REGISTERSERVER2RESPONSE uint32 = uint32(12194)
+const OpcuaNodeIdServices_SERVERONNETWORK_ENCODING_DEFAULTXML uint32 = uint32(12195)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKREQUEST_ENCODING_DEFAULTXML uint32 = uint32(12196)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKRESPONSE_ENCODING_DEFAULTXML uint32 = uint32(12197)
+const OpcuaNodeIdServices_REGISTERSERVER2REQUEST_ENCODING_DEFAULTXML uint32 = uint32(12199)
+const OpcuaNodeIdServices_REGISTERSERVER2RESPONSE_ENCODING_DEFAULTXML uint32 = uint32(12200)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERONNETWORK uint32 = uint32(12201)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERONNETWORK_DATATYPEVERSION uint32 = uint32(12202)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SERVERONNETWORK_DICTIONARYFRAGMENT uint32 = uint32(12203)
+const OpcuaNodeIdServices_SERVERONNETWORK_ENCODING_DEFAULTBINARY uint32 = uint32(12207)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKREQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(12208)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKRESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(12209)
+const OpcuaNodeIdServices_REGISTERSERVER2REQUEST_ENCODING_DEFAULTBINARY uint32 = uint32(12211)
+const OpcuaNodeIdServices_REGISTERSERVER2RESPONSE_ENCODING_DEFAULTBINARY uint32 = uint32(12212)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERONNETWORK uint32 = uint32(12213)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERONNETWORK_DATATYPEVERSION uint32 = uint32(12214)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SERVERONNETWORK_DICTIONARYFRAGMENT uint32 = uint32(12215)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_CONTEXT uint32 = uint32(12502)
+const OpcuaNodeIdServices_PROGRESSEVENTTYPE_PROGRESS uint32 = uint32(12503)
+const OpcuaNodeIdServices_OPENWITHMASKSMETHODTYPE uint32 = uint32(12513)
+const OpcuaNodeIdServices_OPENWITHMASKSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12514)
+const OpcuaNodeIdServices_OPENWITHMASKSMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12515)
+const OpcuaNodeIdServices_CLOSEANDUPDATEMETHODTYPE uint32 = uint32(12516)
+const OpcuaNodeIdServices_CLOSEANDUPDATEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12517)
+const OpcuaNodeIdServices_ADDCERTIFICATEMETHODTYPE uint32 = uint32(12518)
+const OpcuaNodeIdServices_ADDCERTIFICATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12519)
+const OpcuaNodeIdServices_REMOVECERTIFICATEMETHODTYPE uint32 = uint32(12520)
+const OpcuaNodeIdServices_REMOVECERTIFICATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12521)
+const OpcuaNodeIdServices_TRUSTLISTTYPE uint32 = uint32(12522)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_SIZE uint32 = uint32(12523)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPENCOUNT uint32 = uint32(12526)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPEN uint32 = uint32(12527)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPEN_INPUTARGUMENTS uint32 = uint32(12528)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPEN_OUTPUTARGUMENTS uint32 = uint32(12529)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_CLOSE uint32 = uint32(12530)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_CLOSE_INPUTARGUMENTS uint32 = uint32(12531)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_READ uint32 = uint32(12532)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_READ_INPUTARGUMENTS uint32 = uint32(12533)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_READ_OUTPUTARGUMENTS uint32 = uint32(12534)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_WRITE uint32 = uint32(12535)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_WRITE_INPUTARGUMENTS uint32 = uint32(12536)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_GETPOSITION uint32 = uint32(12537)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(12538)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(12539)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_SETPOSITION uint32 = uint32(12540)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(12541)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_LASTUPDATETIME uint32 = uint32(12542)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPENWITHMASKS uint32 = uint32(12543)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(12544)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(12545)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_CLOSEANDUPDATE uint32 = uint32(12546)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(12547)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_ADDCERTIFICATE uint32 = uint32(12548)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(12549)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_REMOVECERTIFICATE uint32 = uint32(12550)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(12551)
+const OpcuaNodeIdServices_TRUSTLISTMASKS uint32 = uint32(12552)
+const OpcuaNodeIdServices_TRUSTLISTMASKS_ENUMVALUES uint32 = uint32(12553)
+const OpcuaNodeIdServices_TRUSTLISTDATATYPE uint32 = uint32(12554)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE uint32 = uint32(12555)
+const OpcuaNodeIdServices_CERTIFICATETYPE uint32 = uint32(12556)
+const OpcuaNodeIdServices_APPLICATIONCERTIFICATETYPE uint32 = uint32(12557)
+const OpcuaNodeIdServices_HTTPSCERTIFICATETYPE uint32 = uint32(12558)
+const OpcuaNodeIdServices_RSAMINAPPLICATIONCERTIFICATETYPE uint32 = uint32(12559)
+const OpcuaNodeIdServices_RSASHA256APPLICATIONCERTIFICATETYPE uint32 = uint32(12560)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE uint32 = uint32(12561)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_EVENTID uint32 = uint32(12562)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(12563)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_SOURCENODE uint32 = uint32(12564)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_SOURCENAME uint32 = uint32(12565)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_TIME uint32 = uint32(12566)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(12567)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_LOCALTIME uint32 = uint32(12568)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_MESSAGE uint32 = uint32(12569)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_SEVERITY uint32 = uint32(12570)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(12571)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_STATUS uint32 = uint32(12572)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_SERVERID uint32 = uint32(12573)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(12574)
+const OpcuaNodeIdServices_TRUSTLISTUPDATEDAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(12575)
+const OpcuaNodeIdServices_UPDATECERTIFICATEMETHODTYPE uint32 = uint32(12578)
+const OpcuaNodeIdServices_UPDATECERTIFICATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12579)
+const OpcuaNodeIdServices_UPDATECERTIFICATEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12580)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE uint32 = uint32(12581)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_SUPPORTEDPRIVATEKEYFORMATS uint32 = uint32(12583)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_MAXTRUSTLISTSIZE uint32 = uint32(12584)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_MULTICASTDNSENABLED uint32 = uint32(12585)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_UPDATECERTIFICATE uint32 = uint32(12616)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_UPDATECERTIFICATE_INPUTARGUMENTS uint32 = uint32(12617)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_UPDATECERTIFICATE_OUTPUTARGUMENTS uint32 = uint32(12618)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE uint32 = uint32(12620)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_EVENTID uint32 = uint32(12621)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(12622)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_SOURCENODE uint32 = uint32(12623)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_SOURCENAME uint32 = uint32(12624)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_TIME uint32 = uint32(12625)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(12626)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_LOCALTIME uint32 = uint32(12627)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_MESSAGE uint32 = uint32(12628)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_SEVERITY uint32 = uint32(12629)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(12630)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_STATUS uint32 = uint32(12631)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_SERVERID uint32 = uint32(12632)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(12633)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(12634)
+const OpcuaNodeIdServices_SERVERCONFIGURATION uint32 = uint32(12637)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_SUPPORTEDPRIVATEKEYFORMATS uint32 = uint32(12639)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_MAXTRUSTLISTSIZE uint32 = uint32(12640)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_MULTICASTDNSENABLED uint32 = uint32(12641)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST uint32 = uint32(12642)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SIZE uint32 = uint32(12643)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(12646)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN uint32 = uint32(12647)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(12648)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(12649)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE uint32 = uint32(12650)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(12651)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ uint32 = uint32(12652)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(12653)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(12654)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE uint32 = uint32(12655)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(12656)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(12657)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(12658)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(12659)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(12660)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(12661)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(12662)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(12663)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(12664)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(12665)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(12666)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(12667)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(12668)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(12669)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(12670)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(12671)
+const OpcuaNodeIdServices_TRUSTLISTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(12676)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TRUSTLISTDATATYPE uint32 = uint32(12677)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TRUSTLISTDATATYPE_DATATYPEVERSION uint32 = uint32(12678)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TRUSTLISTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(12679)
+const OpcuaNodeIdServices_TRUSTLISTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(12680)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TRUSTLISTDATATYPE uint32 = uint32(12681)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TRUSTLISTDATATYPE_DATATYPEVERSION uint32 = uint32(12682)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TRUSTLISTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(12683)
+const OpcuaNodeIdServices_FILETYPE_WRITABLE uint32 = uint32(12686)
+const OpcuaNodeIdServices_FILETYPE_USERWRITABLE uint32 = uint32(12687)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_WRITABLE uint32 = uint32(12688)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_USERWRITABLE uint32 = uint32(12689)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_WRITABLE uint32 = uint32(12690)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_USERWRITABLE uint32 = uint32(12691)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_WRITABLE uint32 = uint32(12692)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_USERWRITABLE uint32 = uint32(12693)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_WRITABLE uint32 = uint32(12698)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_USERWRITABLE uint32 = uint32(12699)
+const OpcuaNodeIdServices_CLOSEANDUPDATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12704)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(12705)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_SERVERCAPABILITIES uint32 = uint32(12708)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_SERVERCAPABILITIES uint32 = uint32(12710)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATHELEMENT uint32 = uint32(12712)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATHELEMENT_DATATYPEVERSION uint32 = uint32(12713)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATHELEMENT_DICTIONARYFRAGMENT uint32 = uint32(12714)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATH uint32 = uint32(12715)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATH_DATATYPEVERSION uint32 = uint32(12716)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RELATIVEPATH_DICTIONARYFRAGMENT uint32 = uint32(12717)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATHELEMENT uint32 = uint32(12718)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATHELEMENT_DATATYPEVERSION uint32 = uint32(12719)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATHELEMENT_DICTIONARYFRAGMENT uint32 = uint32(12720)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATH uint32 = uint32(12721)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATH_DATATYPEVERSION uint32 = uint32(12722)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RELATIVEPATH_DICTIONARYFRAGMENT uint32 = uint32(12723)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CREATESIGNINGREQUEST uint32 = uint32(12731)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CREATESIGNINGREQUEST_INPUTARGUMENTS uint32 = uint32(12732)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CREATESIGNINGREQUEST_OUTPUTARGUMENTS uint32 = uint32(12733)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_APPLYCHANGES uint32 = uint32(12734)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CREATESIGNINGREQUEST uint32 = uint32(12737)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CREATESIGNINGREQUEST_INPUTARGUMENTS uint32 = uint32(12738)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CREATESIGNINGREQUEST_OUTPUTARGUMENTS uint32 = uint32(12739)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_APPLYCHANGES uint32 = uint32(12740)
+const OpcuaNodeIdServices_CREATESIGNINGREQUESTMETHODTYPE uint32 = uint32(12741)
+const OpcuaNodeIdServices_CREATESIGNINGREQUESTMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12742)
+const OpcuaNodeIdServices_CREATESIGNINGREQUESTMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12743)
+const OpcuaNodeIdServices_OPTIONSETVALUES uint32 = uint32(12745)
+const OpcuaNodeIdServices_SERVERTYPE_SETSUBSCRIPTIONDURABLE uint32 = uint32(12746)
+const OpcuaNodeIdServices_SERVERTYPE_SETSUBSCRIPTIONDURABLE_INPUTARGUMENTS uint32 = uint32(12747)
+const OpcuaNodeIdServices_SERVERTYPE_SETSUBSCRIPTIONDURABLE_OUTPUTARGUMENTS uint32 = uint32(12748)
+const OpcuaNodeIdServices_SERVER_SETSUBSCRIPTIONDURABLE uint32 = uint32(12749)
+const OpcuaNodeIdServices_SERVER_SETSUBSCRIPTIONDURABLE_INPUTARGUMENTS uint32 = uint32(12750)
+const OpcuaNodeIdServices_SERVER_SETSUBSCRIPTIONDURABLE_OUTPUTARGUMENTS uint32 = uint32(12751)
+const OpcuaNodeIdServices_SETSUBSCRIPTIONDURABLEMETHODTYPE uint32 = uint32(12752)
+const OpcuaNodeIdServices_SETSUBSCRIPTIONDURABLEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12753)
+const OpcuaNodeIdServices_SETSUBSCRIPTIONDURABLEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12754)
+const OpcuaNodeIdServices_OPTIONSET uint32 = uint32(12755)
+const OpcuaNodeIdServices_UNION uint32 = uint32(12756)
+const OpcuaNodeIdServices_OPTIONSET_ENCODING_DEFAULTXML uint32 = uint32(12757)
+const OpcuaNodeIdServices_UNION_ENCODING_DEFAULTXML uint32 = uint32(12758)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_OPTIONSET uint32 = uint32(12759)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_OPTIONSET_DATATYPEVERSION uint32 = uint32(12760)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_OPTIONSET_DICTIONARYFRAGMENT uint32 = uint32(12761)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UNION uint32 = uint32(12762)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UNION_DATATYPEVERSION uint32 = uint32(12763)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UNION_DICTIONARYFRAGMENT uint32 = uint32(12764)
+const OpcuaNodeIdServices_OPTIONSET_ENCODING_DEFAULTBINARY uint32 = uint32(12765)
+const OpcuaNodeIdServices_UNION_ENCODING_DEFAULTBINARY uint32 = uint32(12766)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_OPTIONSET uint32 = uint32(12767)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_OPTIONSET_DATATYPEVERSION uint32 = uint32(12768)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_OPTIONSET_DICTIONARYFRAGMENT uint32 = uint32(12769)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UNION uint32 = uint32(12770)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UNION_DATATYPEVERSION uint32 = uint32(12771)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UNION_DICTIONARYFRAGMENT uint32 = uint32(12772)
+const OpcuaNodeIdServices_GETREJECTEDLISTMETHODTYPE uint32 = uint32(12773)
+const OpcuaNodeIdServices_GETREJECTEDLISTMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(12774)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_GETREJECTEDLIST uint32 = uint32(12775)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_GETREJECTEDLIST_OUTPUTARGUMENTS uint32 = uint32(12776)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_GETREJECTEDLIST uint32 = uint32(12777)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_GETREJECTEDLIST_OUTPUTARGUMENTS uint32 = uint32(12778)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE_SAMPLINGINTERVALDIAGNOSTICS uint32 = uint32(12779)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE_SAMPLINGINTERVALDIAGNOSTICS_SAMPLINGINTERVAL uint32 = uint32(12780)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE_SAMPLINGINTERVALDIAGNOSTICS_SAMPLEDMONITOREDITEMSCOUNT uint32 = uint32(12781)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE_SAMPLINGINTERVALDIAGNOSTICS_MAXSAMPLEDMONITOREDITEMSCOUNT uint32 = uint32(12782)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSARRAYTYPE_SAMPLINGINTERVALDIAGNOSTICS_DISABLEDMONITOREDITEMSSAMPLINGCOUNT uint32 = uint32(12783)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS uint32 = uint32(12784)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_SESSIONID uint32 = uint32(12785)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_SUBSCRIPTIONID uint32 = uint32(12786)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_PRIORITY uint32 = uint32(12787)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_PUBLISHINGINTERVAL uint32 = uint32(12788)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MAXKEEPALIVECOUNT uint32 = uint32(12789)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MAXLIFETIMECOUNT uint32 = uint32(12790)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MAXNOTIFICATIONSPERPUBLISH uint32 = uint32(12791)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_PUBLISHINGENABLED uint32 = uint32(12792)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MODIFYCOUNT uint32 = uint32(12793)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_ENABLECOUNT uint32 = uint32(12794)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_DISABLECOUNT uint32 = uint32(12795)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_REPUBLISHREQUESTCOUNT uint32 = uint32(12796)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_REPUBLISHMESSAGEREQUESTCOUNT uint32 = uint32(12797)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_REPUBLISHMESSAGECOUNT uint32 = uint32(12798)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_TRANSFERREQUESTCOUNT uint32 = uint32(12799)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_TRANSFERREDTOALTCLIENTCOUNT uint32 = uint32(12800)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_TRANSFERREDTOSAMECLIENTCOUNT uint32 = uint32(12801)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_PUBLISHREQUESTCOUNT uint32 = uint32(12802)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_DATACHANGENOTIFICATIONSCOUNT uint32 = uint32(12803)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_EVENTNOTIFICATIONSCOUNT uint32 = uint32(12804)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_NOTIFICATIONSCOUNT uint32 = uint32(12805)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_LATEPUBLISHREQUESTCOUNT uint32 = uint32(12806)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_CURRENTKEEPALIVECOUNT uint32 = uint32(12807)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_CURRENTLIFETIMECOUNT uint32 = uint32(12808)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_UNACKNOWLEDGEDMESSAGECOUNT uint32 = uint32(12809)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_DISCARDEDMESSAGECOUNT uint32 = uint32(12810)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MONITOREDITEMCOUNT uint32 = uint32(12811)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_DISABLEDMONITOREDITEMCOUNT uint32 = uint32(12812)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_MONITORINGQUEUEOVERFLOWCOUNT uint32 = uint32(12813)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_NEXTSEQUENCENUMBER uint32 = uint32(12814)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSARRAYTYPE_SUBSCRIPTIONDIAGNOSTICS_EVENTQUEUEOVERFLOWCOUNT uint32 = uint32(12815)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS uint32 = uint32(12816)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SESSIONID uint32 = uint32(12817)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SESSIONNAME uint32 = uint32(12818)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CLIENTDESCRIPTION uint32 = uint32(12819)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SERVERURI uint32 = uint32(12820)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_ENDPOINTURL uint32 = uint32(12821)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_LOCALEIDS uint32 = uint32(12822)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_ACTUALSESSIONTIMEOUT uint32 = uint32(12823)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_MAXRESPONSEMESSAGESIZE uint32 = uint32(12824)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CLIENTCONNECTIONTIME uint32 = uint32(12825)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CLIENTLASTCONTACTTIME uint32 = uint32(12826)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CURRENTSUBSCRIPTIONSCOUNT uint32 = uint32(12827)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CURRENTMONITOREDITEMSCOUNT uint32 = uint32(12828)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CURRENTPUBLISHREQUESTSINQUEUE uint32 = uint32(12829)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_TOTALREQUESTCOUNT uint32 = uint32(12830)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_UNAUTHORIZEDREQUESTCOUNT uint32 = uint32(12831)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_READCOUNT uint32 = uint32(12832)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_HISTORYREADCOUNT uint32 = uint32(12833)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_WRITECOUNT uint32 = uint32(12834)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_HISTORYUPDATECOUNT uint32 = uint32(12835)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CALLCOUNT uint32 = uint32(12836)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CREATEMONITOREDITEMSCOUNT uint32 = uint32(12837)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_MODIFYMONITOREDITEMSCOUNT uint32 = uint32(12838)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SETMONITORINGMODECOUNT uint32 = uint32(12839)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SETTRIGGERINGCOUNT uint32 = uint32(12840)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_DELETEMONITOREDITEMSCOUNT uint32 = uint32(12841)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_CREATESUBSCRIPTIONCOUNT uint32 = uint32(12842)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_MODIFYSUBSCRIPTIONCOUNT uint32 = uint32(12843)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_SETPUBLISHINGMODECOUNT uint32 = uint32(12844)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_PUBLISHCOUNT uint32 = uint32(12845)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_REPUBLISHCOUNT uint32 = uint32(12846)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_TRANSFERSUBSCRIPTIONSCOUNT uint32 = uint32(12847)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_DELETESUBSCRIPTIONSCOUNT uint32 = uint32(12848)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_ADDNODESCOUNT uint32 = uint32(12849)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_ADDREFERENCESCOUNT uint32 = uint32(12850)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_DELETENODESCOUNT uint32 = uint32(12851)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_DELETEREFERENCESCOUNT uint32 = uint32(12852)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_BROWSECOUNT uint32 = uint32(12853)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_BROWSENEXTCOUNT uint32 = uint32(12854)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_TRANSLATEBROWSEPATHSTONODEIDSCOUNT uint32 = uint32(12855)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_QUERYFIRSTCOUNT uint32 = uint32(12856)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_QUERYNEXTCOUNT uint32 = uint32(12857)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_REGISTERNODESCOUNT uint32 = uint32(12858)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSARRAYTYPE_SESSIONDIAGNOSTICS_UNREGISTERNODESCOUNT uint32 = uint32(12859)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS uint32 = uint32(12860)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_SESSIONID uint32 = uint32(12861)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDOFSESSION uint32 = uint32(12862)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTUSERIDHISTORY uint32 = uint32(12863)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_AUTHENTICATIONMECHANISM uint32 = uint32(12864)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_ENCODING uint32 = uint32(12865)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_TRANSPORTPROTOCOL uint32 = uint32(12866)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_SECURITYMODE uint32 = uint32(12867)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_SECURITYPOLICYURI uint32 = uint32(12868)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSARRAYTYPE_SESSIONSECURITYDIAGNOSTICS_CLIENTCERTIFICATE uint32 = uint32(12869)
+const OpcuaNodeIdServices_SERVERTYPE_RESENDDATA uint32 = uint32(12871)
+const OpcuaNodeIdServices_SERVERTYPE_RESENDDATA_INPUTARGUMENTS uint32 = uint32(12872)
+const OpcuaNodeIdServices_SERVER_RESENDDATA uint32 = uint32(12873)
+const OpcuaNodeIdServices_SERVER_RESENDDATA_INPUTARGUMENTS uint32 = uint32(12874)
+const OpcuaNodeIdServices_RESENDDATAMETHODTYPE uint32 = uint32(12875)
+const OpcuaNodeIdServices_RESENDDATAMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12876)
+const OpcuaNodeIdServices_NORMALIZEDSTRING uint32 = uint32(12877)
+const OpcuaNodeIdServices_DECIMALSTRING uint32 = uint32(12878)
+const OpcuaNodeIdServices_DURATIONSTRING uint32 = uint32(12879)
+const OpcuaNodeIdServices_TIMESTRING uint32 = uint32(12880)
+const OpcuaNodeIdServices_DATESTRING uint32 = uint32(12881)
+const OpcuaNodeIdServices_SERVERTYPE_ESTIMATEDRETURNTIME uint32 = uint32(12882)
+const OpcuaNodeIdServices_SERVERTYPE_REQUESTSERVERSTATECHANGE uint32 = uint32(12883)
+const OpcuaNodeIdServices_SERVERTYPE_REQUESTSERVERSTATECHANGE_INPUTARGUMENTS uint32 = uint32(12884)
+const OpcuaNodeIdServices_SERVER_ESTIMATEDRETURNTIME uint32 = uint32(12885)
+const OpcuaNodeIdServices_SERVER_REQUESTSERVERSTATECHANGE uint32 = uint32(12886)
+const OpcuaNodeIdServices_SERVER_REQUESTSERVERSTATECHANGE_INPUTARGUMENTS uint32 = uint32(12887)
+const OpcuaNodeIdServices_REQUESTSERVERSTATECHANGEMETHODTYPE uint32 = uint32(12888)
+const OpcuaNodeIdServices_REQUESTSERVERSTATECHANGEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(12889)
+const OpcuaNodeIdServices_DISCOVERYCONFIGURATION uint32 = uint32(12890)
+const OpcuaNodeIdServices_MDNSDISCOVERYCONFIGURATION uint32 = uint32(12891)
+const OpcuaNodeIdServices_DISCOVERYCONFIGURATION_ENCODING_DEFAULTXML uint32 = uint32(12892)
+const OpcuaNodeIdServices_MDNSDISCOVERYCONFIGURATION_ENCODING_DEFAULTXML uint32 = uint32(12893)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DISCOVERYCONFIGURATION uint32 = uint32(12894)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DISCOVERYCONFIGURATION_DATATYPEVERSION uint32 = uint32(12895)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DISCOVERYCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(12896)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MDNSDISCOVERYCONFIGURATION uint32 = uint32(12897)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MDNSDISCOVERYCONFIGURATION_DATATYPEVERSION uint32 = uint32(12898)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_MDNSDISCOVERYCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(12899)
+const OpcuaNodeIdServices_DISCOVERYCONFIGURATION_ENCODING_DEFAULTBINARY uint32 = uint32(12900)
+const OpcuaNodeIdServices_MDNSDISCOVERYCONFIGURATION_ENCODING_DEFAULTBINARY uint32 = uint32(12901)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DISCOVERYCONFIGURATION uint32 = uint32(12902)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DISCOVERYCONFIGURATION_DATATYPEVERSION uint32 = uint32(12903)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DISCOVERYCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(12904)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MDNSDISCOVERYCONFIGURATION uint32 = uint32(12905)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MDNSDISCOVERYCONFIGURATION_DATATYPEVERSION uint32 = uint32(12906)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_MDNSDISCOVERYCONFIGURATION_DICTIONARYFRAGMENT uint32 = uint32(12907)
+const OpcuaNodeIdServices_MAXBYTESTRINGLENGTH uint32 = uint32(12908)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_MAXBYTESTRINGLENGTH uint32 = uint32(12909)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_MAXBYTESTRINGLENGTH uint32 = uint32(12910)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_MAXBYTESTRINGLENGTH uint32 = uint32(12911)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONREFRESH2 uint32 = uint32(12912)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12913)
+const OpcuaNodeIdServices_CONDITIONREFRESH2METHODTYPE uint32 = uint32(12914)
+const OpcuaNodeIdServices_CONDITIONREFRESH2METHODTYPE_INPUTARGUMENTS uint32 = uint32(12915)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONREFRESH2 uint32 = uint32(12916)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12917)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONREFRESH2 uint32 = uint32(12918)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12919)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONREFRESH2 uint32 = uint32(12984)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12985)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12986)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12987)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12988)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12989)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12990)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12991)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12992)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12993)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12994)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12995)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12996)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12997)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(12998)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(12999)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13000)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13001)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13002)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13003)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13004)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13005)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13006)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13007)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13008)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13009)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13010)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13011)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE uint32 = uint32(13225)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_EVENTID uint32 = uint32(13226)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_EVENTTYPE uint32 = uint32(13227)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SOURCENODE uint32 = uint32(13228)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SOURCENAME uint32 = uint32(13229)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_TIME uint32 = uint32(13230)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_RECEIVETIME uint32 = uint32(13231)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LOCALTIME uint32 = uint32(13232)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_MESSAGE uint32 = uint32(13233)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SEVERITY uint32 = uint32(13234)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONCLASSID uint32 = uint32(13235)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(13236)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONNAME uint32 = uint32(13237)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_BRANCHID uint32 = uint32(13238)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_RETAIN uint32 = uint32(13239)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE uint32 = uint32(13240)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(13241)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(13242)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(13243)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13244)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(13245)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(13246)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(13247)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(13248)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_QUALITY uint32 = uint32(13249)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(13250)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LASTSEVERITY uint32 = uint32(13251)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(13252)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_COMMENT uint32 = uint32(13253)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(13254)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CLIENTUSERID uint32 = uint32(13255)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_DISABLE uint32 = uint32(13256)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ENABLE uint32 = uint32(13257)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ADDCOMMENT uint32 = uint32(13258)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(13259)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONREFRESH uint32 = uint32(13260)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(13261)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(13262)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(13263)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE uint32 = uint32(13264)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_ID uint32 = uint32(13265)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(13266)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(13267)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13268)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(13269)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(13270)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(13271)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(13272)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE uint32 = uint32(13273)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(13274)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(13275)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(13276)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13277)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(13278)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(13279)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(13280)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(13281)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKNOWLEDGE uint32 = uint32(13282)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(13283)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRM uint32 = uint32(13284)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(13285)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE uint32 = uint32(13286)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_ID uint32 = uint32(13287)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(13288)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(13289)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13290)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(13291)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(13292)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(13293)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(13294)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_INPUTNODE uint32 = uint32(13295)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(13296)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(13297)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(13298)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(13299)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13300)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(13301)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(13302)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(13303)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(13304)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE uint32 = uint32(13305)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(13306)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(13307)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(13308)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(13309)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(13310)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(13311)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(13312)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(13313)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(13314)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(13315)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(13316)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(13317)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(13318)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(13319)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(13320)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(13321)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(13322)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_MAXTIMESHELVED uint32 = uint32(13323)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_NORMALSTATE uint32 = uint32(13324)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_EXPIRATIONDATE uint32 = uint32(13325)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CERTIFICATETYPE uint32 = uint32(13326)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CERTIFICATE uint32 = uint32(13327)
+const OpcuaNodeIdServices_FILETYPE_MIMETYPE uint32 = uint32(13341)
+const OpcuaNodeIdServices_CREATEDIRECTORYMETHODTYPE uint32 = uint32(13342)
+const OpcuaNodeIdServices_CREATEDIRECTORYMETHODTYPE_INPUTARGUMENTS uint32 = uint32(13343)
+const OpcuaNodeIdServices_CREATEDIRECTORYMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(13344)
+const OpcuaNodeIdServices_CREATEFILEMETHODTYPE uint32 = uint32(13345)
+const OpcuaNodeIdServices_CREATEFILEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(13346)
+const OpcuaNodeIdServices_CREATEFILEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(13347)
+const OpcuaNodeIdServices_DELETEFILEMETHODTYPE uint32 = uint32(13348)
+const OpcuaNodeIdServices_DELETEFILEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(13349)
+const OpcuaNodeIdServices_MOVEORCOPYMETHODTYPE uint32 = uint32(13350)
+const OpcuaNodeIdServices_MOVEORCOPYMETHODTYPE_INPUTARGUMENTS uint32 = uint32(13351)
+const OpcuaNodeIdServices_MOVEORCOPYMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(13352)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE uint32 = uint32(13353)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER uint32 = uint32(13354)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY uint32 = uint32(13355)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY_INPUTARGUMENTS uint32 = uint32(13356)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY_OUTPUTARGUMENTS uint32 = uint32(13357)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE uint32 = uint32(13358)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE_INPUTARGUMENTS uint32 = uint32(13359)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE_OUTPUTARGUMENTS uint32 = uint32(13360)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY uint32 = uint32(13363)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY_INPUTARGUMENTS uint32 = uint32(13364)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY_OUTPUTARGUMENTS uint32 = uint32(13365)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER uint32 = uint32(13366)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_SIZE uint32 = uint32(13367)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_WRITABLE uint32 = uint32(13368)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_USERWRITABLE uint32 = uint32(13369)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_OPENCOUNT uint32 = uint32(13370)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_MIMETYPE uint32 = uint32(13371)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_OPEN uint32 = uint32(13372)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_OPEN_INPUTARGUMENTS uint32 = uint32(13373)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_OPEN_OUTPUTARGUMENTS uint32 = uint32(13374)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_CLOSE uint32 = uint32(13375)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_CLOSE_INPUTARGUMENTS uint32 = uint32(13376)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_READ uint32 = uint32(13377)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_READ_INPUTARGUMENTS uint32 = uint32(13378)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_READ_OUTPUTARGUMENTS uint32 = uint32(13379)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_WRITE uint32 = uint32(13380)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_WRITE_INPUTARGUMENTS uint32 = uint32(13381)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_GETPOSITION uint32 = uint32(13382)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13383)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13384)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_SETPOSITION uint32 = uint32(13385)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILENAME_PLACEHOLDER_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13386)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEDIRECTORY uint32 = uint32(13387)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEDIRECTORY_INPUTARGUMENTS uint32 = uint32(13388)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEDIRECTORY_OUTPUTARGUMENTS uint32 = uint32(13389)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEFILE uint32 = uint32(13390)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEFILE_INPUTARGUMENTS uint32 = uint32(13391)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_CREATEFILE_OUTPUTARGUMENTS uint32 = uint32(13392)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_DELETEFILESYSTEMOBJECT uint32 = uint32(13393)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_DELETEFILESYSTEMOBJECT_INPUTARGUMENTS uint32 = uint32(13394)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_MOVEORCOPY uint32 = uint32(13395)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_MOVEORCOPY_INPUTARGUMENTS uint32 = uint32(13396)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_MOVEORCOPY_OUTPUTARGUMENTS uint32 = uint32(13397)
+const OpcuaNodeIdServices_ADDRESSSPACEFILETYPE_MIMETYPE uint32 = uint32(13398)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_NAMESPACEFILE_MIMETYPE uint32 = uint32(13399)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_NAMESPACEFILE_MIMETYPE uint32 = uint32(13400)
+const OpcuaNodeIdServices_TRUSTLISTTYPE_MIMETYPE uint32 = uint32(13403)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST uint32 = uint32(13599)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_SIZE uint32 = uint32(13600)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_WRITABLE uint32 = uint32(13601)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_USERWRITABLE uint32 = uint32(13602)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPENCOUNT uint32 = uint32(13603)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_MIMETYPE uint32 = uint32(13604)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPEN uint32 = uint32(13605)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13606)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13607)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_CLOSE uint32 = uint32(13608)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13609)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_READ uint32 = uint32(13610)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13611)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13612)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_WRITE uint32 = uint32(13613)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13614)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_GETPOSITION uint32 = uint32(13615)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13616)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13617)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_SETPOSITION uint32 = uint32(13618)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13619)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13620)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13621)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13622)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13623)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13624)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13625)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13626)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13627)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13628)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13629)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13630)
+const OpcuaNodeIdServices_CERTIFICATEGROUPTYPE_CERTIFICATETYPES uint32 = uint32(13631)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_CERTIFICATEGROUP uint32 = uint32(13735)
+const OpcuaNodeIdServices_CERTIFICATEUPDATEDAUDITEVENTTYPE_CERTIFICATETYPE uint32 = uint32(13736)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_UPDATECERTIFICATE uint32 = uint32(13737)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_UPDATECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13738)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_UPDATECERTIFICATE_OUTPUTARGUMENTS uint32 = uint32(13739)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE uint32 = uint32(13813)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP uint32 = uint32(13814)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST uint32 = uint32(13815)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SIZE uint32 = uint32(13816)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITABLE uint32 = uint32(13817)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(13818)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(13819)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(13820)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN uint32 = uint32(13821)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13822)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13823)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE uint32 = uint32(13824)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13825)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ uint32 = uint32(13826)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13827)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13828)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE uint32 = uint32(13829)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13830)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(13831)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13832)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13833)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(13834)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13835)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13836)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13837)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13838)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13839)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13840)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13841)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13842)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13843)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13844)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13845)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13846)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTAPPLICATIONGROUP_CERTIFICATETYPES uint32 = uint32(13847)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP uint32 = uint32(13848)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST uint32 = uint32(13849)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_SIZE uint32 = uint32(13850)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_WRITABLE uint32 = uint32(13851)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(13852)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(13853)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(13854)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN uint32 = uint32(13855)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13856)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13857)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE uint32 = uint32(13858)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13859)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_READ uint32 = uint32(13860)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13861)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13862)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE uint32 = uint32(13863)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13864)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(13865)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13866)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13867)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(13868)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13869)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13870)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13871)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13872)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13873)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13874)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13875)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13876)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13877)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13878)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13879)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13880)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTHTTPSGROUP_CERTIFICATETYPES uint32 = uint32(13881)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP uint32 = uint32(13882)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST uint32 = uint32(13883)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_SIZE uint32 = uint32(13884)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITABLE uint32 = uint32(13885)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(13886)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(13887)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(13888)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN uint32 = uint32(13889)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13890)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13891)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE uint32 = uint32(13892)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13893)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ uint32 = uint32(13894)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13895)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13896)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE uint32 = uint32(13897)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13898)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(13899)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13900)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13901)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(13902)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13903)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13904)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13905)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13906)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13907)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13908)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13909)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13910)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13911)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13912)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13913)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13914)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_DEFAULTUSERTOKENGROUP_CERTIFICATETYPES uint32 = uint32(13915)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER uint32 = uint32(13916)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST uint32 = uint32(13917)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_SIZE uint32 = uint32(13918)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_WRITABLE uint32 = uint32(13919)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_USERWRITABLE uint32 = uint32(13920)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPENCOUNT uint32 = uint32(13921)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_MIMETYPE uint32 = uint32(13922)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPEN uint32 = uint32(13923)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13924)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13925)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_CLOSE uint32 = uint32(13926)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13927)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_READ uint32 = uint32(13928)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13929)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13930)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_WRITE uint32 = uint32(13931)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13932)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_GETPOSITION uint32 = uint32(13933)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13934)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13935)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_SETPOSITION uint32 = uint32(13936)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13937)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13938)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13939)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13940)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13941)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13942)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13943)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13944)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13945)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13946)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13947)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13948)
+const OpcuaNodeIdServices_CERTIFICATEGROUPFOLDERTYPE_ADDITIONALGROUP_PLACEHOLDER_CERTIFICATETYPES uint32 = uint32(13949)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS uint32 = uint32(13950)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP uint32 = uint32(13951)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST uint32 = uint32(13952)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SIZE uint32 = uint32(13953)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITABLE uint32 = uint32(13954)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(13955)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(13956)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(13957)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN uint32 = uint32(13958)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13959)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13960)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE uint32 = uint32(13961)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13962)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ uint32 = uint32(13963)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13964)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13965)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE uint32 = uint32(13966)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(13967)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(13968)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(13969)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(13970)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(13971)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(13972)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(13973)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(13974)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(13975)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(13976)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(13977)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(13978)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(13979)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(13980)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(13981)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(13982)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(13983)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_CERTIFICATETYPES uint32 = uint32(13984)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP uint32 = uint32(13985)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST uint32 = uint32(13986)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SIZE uint32 = uint32(13987)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITABLE uint32 = uint32(13988)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(13989)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(13990)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(13991)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN uint32 = uint32(13992)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(13993)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(13994)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE uint32 = uint32(13995)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(13996)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ uint32 = uint32(13997)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(13998)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(13999)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE uint32 = uint32(14000)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(14001)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(14002)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(14003)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(14004)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(14005)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(14006)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(14007)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(14008)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(14009)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(14010)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(14011)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(14012)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(14013)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(14014)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(14015)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(14016)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(14017)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_CERTIFICATETYPES uint32 = uint32(14018)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP uint32 = uint32(14019)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST uint32 = uint32(14020)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SIZE uint32 = uint32(14021)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITABLE uint32 = uint32(14022)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(14023)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(14024)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(14025)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN uint32 = uint32(14026)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(14027)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(14028)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE uint32 = uint32(14029)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(14030)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ uint32 = uint32(14031)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(14032)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(14033)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE uint32 = uint32(14034)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(14035)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(14036)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(14037)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(14038)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(14039)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(14040)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(14041)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(14042)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(14043)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(14044)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(14045)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(14046)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(14047)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(14048)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(14049)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(14050)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(14051)
+const OpcuaNodeIdServices_SERVERCONFIGURATIONTYPE_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_CERTIFICATETYPES uint32 = uint32(14052)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS uint32 = uint32(14053)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP uint32 = uint32(14088)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST uint32 = uint32(14089)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SIZE uint32 = uint32(14090)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITABLE uint32 = uint32(14091)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(14092)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(14093)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(14094)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN uint32 = uint32(14095)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(14096)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(14097)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE uint32 = uint32(14098)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(14099)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ uint32 = uint32(14100)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(14101)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(14102)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE uint32 = uint32(14103)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(14104)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(14105)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(14106)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(14107)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(14108)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(14109)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(14110)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(14111)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(14112)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(14113)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(14114)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(14115)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(14116)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(14117)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(14118)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(14119)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(14120)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTHTTPSGROUP_CERTIFICATETYPES uint32 = uint32(14121)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP uint32 = uint32(14122)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST uint32 = uint32(14123)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SIZE uint32 = uint32(14124)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITABLE uint32 = uint32(14125)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(14126)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENCOUNT uint32 = uint32(14127)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(14128)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN uint32 = uint32(14129)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_INPUTARGUMENTS uint32 = uint32(14130)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPEN_OUTPUTARGUMENTS uint32 = uint32(14131)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE uint32 = uint32(14132)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSE_INPUTARGUMENTS uint32 = uint32(14133)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ uint32 = uint32(14134)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_INPUTARGUMENTS uint32 = uint32(14135)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_READ_OUTPUTARGUMENTS uint32 = uint32(14136)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE uint32 = uint32(14137)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_WRITE_INPUTARGUMENTS uint32 = uint32(14138)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION uint32 = uint32(14139)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_INPUTARGUMENTS uint32 = uint32(14140)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(14141)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION uint32 = uint32(14142)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_SETPOSITION_INPUTARGUMENTS uint32 = uint32(14143)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_LASTUPDATETIME uint32 = uint32(14144)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS uint32 = uint32(14145)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_INPUTARGUMENTS uint32 = uint32(14146)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_OPENWITHMASKS_OUTPUTARGUMENTS uint32 = uint32(14147)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE uint32 = uint32(14148)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(14149)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_CLOSEANDUPDATE_OUTPUTARGUMENTS uint32 = uint32(14150)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE uint32 = uint32(14151)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_ADDCERTIFICATE_INPUTARGUMENTS uint32 = uint32(14152)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE uint32 = uint32(14153)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_TRUSTLIST_REMOVECERTIFICATE_INPUTARGUMENTS uint32 = uint32(14154)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTUSERTOKENGROUP_CERTIFICATETYPES uint32 = uint32(14155)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP uint32 = uint32(14156)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_WRITABLE uint32 = uint32(14157)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_USERWRITABLE uint32 = uint32(14158)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_MIMETYPE uint32 = uint32(14159)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_TRUSTLIST_CLOSEANDUPDATE_INPUTARGUMENTS uint32 = uint32(14160)
+const OpcuaNodeIdServices_SERVERCONFIGURATION_CERTIFICATEGROUPS_DEFAULTAPPLICATIONGROUP_CERTIFICATETYPES uint32 = uint32(14161)
+const OpcuaNodeIdServices_REMOVECONNECTIONMETHODTYPE uint32 = uint32(14183)
+const OpcuaNodeIdServices_REMOVECONNECTIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14184)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE uint32 = uint32(14209)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDRESS uint32 = uint32(14221)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_REMOVEGROUP uint32 = uint32(14225)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_REMOVEGROUP_INPUTARGUMENTS uint32 = uint32(14226)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE uint32 = uint32(14232)
+const OpcuaNodeIdServices_PUBLISHEDVARIABLEDATATYPE uint32 = uint32(14273)
+const OpcuaNodeIdServices_PUBLISHEDVARIABLEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(14319)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDVARIABLEDATATYPE uint32 = uint32(14320)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDVARIABLEDATATYPE_DATATYPEVERSION uint32 = uint32(14321)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDVARIABLEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14322)
+const OpcuaNodeIdServices_PUBLISHEDVARIABLEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(14323)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDVARIABLEDATATYPE uint32 = uint32(14324)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDVARIABLEDATATYPE_DATATYPEVERSION uint32 = uint32(14325)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDVARIABLEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14326)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_SESSIONID uint32 = uint32(14413)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_SESSIONID uint32 = uint32(14414)
+const OpcuaNodeIdServices_SERVER_SERVERREDUNDANCY_SERVERNETWORKGROUPS uint32 = uint32(14415)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE uint32 = uint32(14416)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER uint32 = uint32(14417)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_PUBLISHERID uint32 = uint32(14418)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_STATUS uint32 = uint32(14419)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(14420)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(14421)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(14422)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDRESS uint32 = uint32(14423)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_REMOVEGROUP uint32 = uint32(14424)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_REMOVEGROUP_INPUTARGUMENTS uint32 = uint32(14425)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_REMOVECONNECTION uint32 = uint32(14432)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_REMOVECONNECTION_INPUTARGUMENTS uint32 = uint32(14433)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS uint32 = uint32(14434)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS uint32 = uint32(14435)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS_INPUTARGUMENTS uint32 = uint32(14436)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS_OUTPUTARGUMENTS uint32 = uint32(14437)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS uint32 = uint32(14438)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS_INPUTARGUMENTS uint32 = uint32(14439)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS_OUTPUTARGUMENTS uint32 = uint32(14440)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_REMOVEPUBLISHEDDATASET uint32 = uint32(14441)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_REMOVEPUBLISHEDDATASET_INPUTARGUMENTS uint32 = uint32(14442)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE uint32 = uint32(14443)
+const OpcuaNodeIdServices_HASPUBSUBCONNECTION uint32 = uint32(14476)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE uint32 = uint32(14477)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER uint32 = uint32(14478)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMS uint32 = uint32(14479)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMS_INPUTARGUMENTS uint32 = uint32(14480)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMS_OUTPUTARGUMENTS uint32 = uint32(14481)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTS uint32 = uint32(14482)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTS_INPUTARGUMENTS uint32 = uint32(14483)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTS_OUTPUTARGUMENTS uint32 = uint32(14484)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_REMOVEPUBLISHEDDATASET uint32 = uint32(14485)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_REMOVEPUBLISHEDDATASET_INPUTARGUMENTS uint32 = uint32(14486)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER uint32 = uint32(14487)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_CONFIGURATIONVERSION uint32 = uint32(14489)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMS uint32 = uint32(14493)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMS_INPUTARGUMENTS uint32 = uint32(14494)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMS_OUTPUTARGUMENTS uint32 = uint32(14495)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTS uint32 = uint32(14496)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTS_INPUTARGUMENTS uint32 = uint32(14497)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTS_OUTPUTARGUMENTS uint32 = uint32(14498)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_REMOVEPUBLISHEDDATASET uint32 = uint32(14499)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_REMOVEPUBLISHEDDATASET_INPUTARGUMENTS uint32 = uint32(14500)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSMETHODTYPE uint32 = uint32(14501)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14502)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(14503)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSMETHODTYPE uint32 = uint32(14504)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14505)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(14506)
+const OpcuaNodeIdServices_REMOVEPUBLISHEDDATASETMETHODTYPE uint32 = uint32(14507)
+const OpcuaNodeIdServices_REMOVEPUBLISHEDDATASETMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14508)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE uint32 = uint32(14509)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_CONFIGURATIONVERSION uint32 = uint32(14519)
+const OpcuaNodeIdServices_DATASETMETADATATYPE uint32 = uint32(14523)
+const OpcuaNodeIdServices_FIELDMETADATA uint32 = uint32(14524)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTION uint32 = uint32(14525)
+const OpcuaNodeIdServices_STRUCTURETYPE_ENUMSTRINGS uint32 = uint32(14528)
+const OpcuaNodeIdServices_KEYVALUEPAIR uint32 = uint32(14533)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE uint32 = uint32(14534)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_CONFIGURATIONVERSION uint32 = uint32(14544)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_PUBLISHEDDATA uint32 = uint32(14548)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_ADDVARIABLES uint32 = uint32(14555)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_ADDVARIABLES_INPUTARGUMENTS uint32 = uint32(14556)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_ADDVARIABLES_OUTPUTARGUMENTS uint32 = uint32(14557)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_REMOVEVARIABLES uint32 = uint32(14558)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_REMOVEVARIABLES_INPUTARGUMENTS uint32 = uint32(14559)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_REMOVEVARIABLES_OUTPUTARGUMENTS uint32 = uint32(14560)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSADDVARIABLESMETHODTYPE uint32 = uint32(14564)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSADDVARIABLESMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14565)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSADDVARIABLESMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(14566)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSREMOVEVARIABLESMETHODTYPE uint32 = uint32(14567)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSREMOVEVARIABLESMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14568)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSREMOVEVARIABLESMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(14569)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE uint32 = uint32(14572)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_CONFIGURATIONVERSION uint32 = uint32(14582)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_PUBSUBEVENTNOTIFIER uint32 = uint32(14586)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_SELECTEDFIELDS uint32 = uint32(14587)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_FILTER uint32 = uint32(14588)
+const OpcuaNodeIdServices_CONFIGURATIONVERSIONDATATYPE uint32 = uint32(14593)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_PUBLISHERID uint32 = uint32(14595)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_STATUS uint32 = uint32(14600)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_STATUS_STATE uint32 = uint32(14601)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_STATUS_ENABLE uint32 = uint32(14602)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_STATUS_DISABLE uint32 = uint32(14603)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPEREMOVEGROUPMETHODTYPE uint32 = uint32(14604)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPEREMOVEGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14605)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEREMOVEWRITERMETHODTYPE uint32 = uint32(14623)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEREMOVEWRITERMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14624)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEREMOVEREADERMETHODTYPE uint32 = uint32(14625)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEREMOVEREADERMETHODTYPE_INPUTARGUMENTS uint32 = uint32(14626)
+const OpcuaNodeIdServices_PUBSUBSTATUSTYPE uint32 = uint32(14643)
+const OpcuaNodeIdServices_PUBSUBSTATUSTYPE_STATE uint32 = uint32(14644)
+const OpcuaNodeIdServices_PUBSUBSTATUSTYPE_ENABLE uint32 = uint32(14645)
+const OpcuaNodeIdServices_PUBSUBSTATUSTYPE_DISABLE uint32 = uint32(14646)
+const OpcuaNodeIdServices_PUBSUBSTATE uint32 = uint32(14647)
+const OpcuaNodeIdServices_PUBSUBSTATE_ENUMSTRINGS uint32 = uint32(14648)
+const OpcuaNodeIdServices_FIELDTARGETDATATYPE uint32 = uint32(14744)
+const OpcuaNodeIdServices_DATASETMETADATATYPE_ENCODING_DEFAULTXML uint32 = uint32(14794)
+const OpcuaNodeIdServices_FIELDMETADATA_ENCODING_DEFAULTXML uint32 = uint32(14795)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(14796)
+const OpcuaNodeIdServices_DATATYPEDEFINITION_ENCODING_DEFAULTXML uint32 = uint32(14797)
+const OpcuaNodeIdServices_STRUCTUREDEFINITION_ENCODING_DEFAULTXML uint32 = uint32(14798)
+const OpcuaNodeIdServices_ENUMDEFINITION_ENCODING_DEFAULTXML uint32 = uint32(14799)
+const OpcuaNodeIdServices_STRUCTUREFIELD_ENCODING_DEFAULTXML uint32 = uint32(14800)
+const OpcuaNodeIdServices_ENUMFIELD_ENCODING_DEFAULTXML uint32 = uint32(14801)
+const OpcuaNodeIdServices_KEYVALUEPAIR_ENCODING_DEFAULTXML uint32 = uint32(14802)
+const OpcuaNodeIdServices_CONFIGURATIONVERSIONDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(14803)
+const OpcuaNodeIdServices_FIELDTARGETDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(14804)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETMETADATATYPE uint32 = uint32(14805)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETMETADATATYPE_DATATYPEVERSION uint32 = uint32(14806)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETMETADATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14807)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDMETADATA uint32 = uint32(14808)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDMETADATA_DATATYPEVERSION uint32 = uint32(14809)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDMETADATA_DICTIONARYFRAGMENT uint32 = uint32(14810)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDESCRIPTION uint32 = uint32(14811)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDESCRIPTION_DATATYPEVERSION uint32 = uint32(14812)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(14813)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMFIELD uint32 = uint32(14826)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMFIELD_DATATYPEVERSION uint32 = uint32(14827)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMFIELD_DICTIONARYFRAGMENT uint32 = uint32(14828)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_KEYVALUEPAIR uint32 = uint32(14829)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_KEYVALUEPAIR_DATATYPEVERSION uint32 = uint32(14830)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_KEYVALUEPAIR_DICTIONARYFRAGMENT uint32 = uint32(14831)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONFIGURATIONVERSIONDATATYPE uint32 = uint32(14832)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONFIGURATIONVERSIONDATATYPE_DATATYPEVERSION uint32 = uint32(14833)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONFIGURATIONVERSIONDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14834)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDTARGETDATATYPE uint32 = uint32(14835)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDTARGETDATATYPE_DATATYPEVERSION uint32 = uint32(14836)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FIELDTARGETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14837)
+const OpcuaNodeIdServices_FIELDMETADATA_ENCODING_DEFAULTBINARY uint32 = uint32(14839)
+const OpcuaNodeIdServices_STRUCTUREFIELD_ENCODING_DEFAULTBINARY uint32 = uint32(14844)
+const OpcuaNodeIdServices_ENUMFIELD_ENCODING_DEFAULTBINARY uint32 = uint32(14845)
+const OpcuaNodeIdServices_KEYVALUEPAIR_ENCODING_DEFAULTBINARY uint32 = uint32(14846)
+const OpcuaNodeIdServices_CONFIGURATIONVERSIONDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(14847)
+const OpcuaNodeIdServices_FIELDTARGETDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(14848)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETMETADATATYPE uint32 = uint32(14849)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETMETADATATYPE_DATATYPEVERSION uint32 = uint32(14850)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETMETADATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14851)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FIELDMETADATA uint32 = uint32(14852)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FIELDMETADATA_DATATYPEVERSION uint32 = uint32(14853)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FIELDMETADATA_DICTIONARYFRAGMENT uint32 = uint32(14854)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDESCRIPTION uint32 = uint32(14855)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDESCRIPTION_DATATYPEVERSION uint32 = uint32(14856)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(14857)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMFIELD uint32 = uint32(14870)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMFIELD_DATATYPEVERSION uint32 = uint32(14871)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMFIELD_DICTIONARYFRAGMENT uint32 = uint32(14872)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_KEYVALUEPAIR uint32 = uint32(14873)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_KEYVALUEPAIR_DATATYPEVERSION uint32 = uint32(14874)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_KEYVALUEPAIR_DICTIONARYFRAGMENT uint32 = uint32(14875)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONFIGURATIONVERSIONDATATYPE uint32 = uint32(14876)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONFIGURATIONVERSIONDATATYPE_DATATYPEVERSION uint32 = uint32(14877)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONFIGURATIONVERSIONDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14878)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FIELDTARGETDATATYPE_DATATYPEVERSION uint32 = uint32(14880)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FIELDTARGETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(14881)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_EXPIRATIONLIMIT uint32 = uint32(14900)
+const OpcuaNodeIdServices_DATASETTOWRITER uint32 = uint32(14936)
+const OpcuaNodeIdServices_DATATYPEDICTIONARYTYPE_DEPRECATED uint32 = uint32(15001)
+const OpcuaNodeIdServices_MAXCHARACTERS uint32 = uint32(15002)
+const OpcuaNodeIdServices_SERVERTYPE_URISVERSION uint32 = uint32(15003)
+const OpcuaNodeIdServices_SERVER_URISVERSION uint32 = uint32(15004)
+const OpcuaNodeIdServices_SIMPLETYPEDESCRIPTION uint32 = uint32(15005)
+const OpcuaNodeIdServices_UABINARYFILEDATATYPE uint32 = uint32(15006)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTDATATYPE uint32 = uint32(15007)
+const OpcuaNodeIdServices_BROKERTRANSPORTQUALITYOFSERVICE uint32 = uint32(15008)
+const OpcuaNodeIdServices_BROKERTRANSPORTQUALITYOFSERVICE_ENUMSTRINGS uint32 = uint32(15009)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER_KEYLIFETIME uint32 = uint32(15010)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER_SECURITYPOLICYURI uint32 = uint32(15011)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER_MAXFUTUREKEYCOUNT uint32 = uint32(15012)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE uint32 = uint32(15013)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_EVENTID uint32 = uint32(15014)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_EVENTTYPE uint32 = uint32(15015)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_SOURCENODE uint32 = uint32(15016)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_SOURCENAME uint32 = uint32(15017)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_TIME uint32 = uint32(15018)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_RECEIVETIME uint32 = uint32(15019)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_LOCALTIME uint32 = uint32(15020)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_MESSAGE uint32 = uint32(15021)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_SEVERITY uint32 = uint32(15022)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(15023)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_STATUS uint32 = uint32(15024)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_SERVERID uint32 = uint32(15025)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(15026)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_CLIENTUSERID uint32 = uint32(15027)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_METHODID uint32 = uint32(15028)
+const OpcuaNodeIdServices_AUDITCONDITIONRESETEVENTTYPE_INPUTARGUMENTS uint32 = uint32(15029)
+const OpcuaNodeIdServices_PERMISSIONTYPE_OPTIONSETVALUES uint32 = uint32(15030)
+const OpcuaNodeIdServices_ACCESSLEVELTYPE uint32 = uint32(15031)
+const OpcuaNodeIdServices_ACCESSLEVELTYPE_OPTIONSETVALUES uint32 = uint32(15032)
+const OpcuaNodeIdServices_EVENTNOTIFIERTYPE uint32 = uint32(15033)
+const OpcuaNodeIdServices_EVENTNOTIFIERTYPE_OPTIONSETVALUES uint32 = uint32(15034)
+const OpcuaNodeIdServices_ACCESSRESTRICTIONTYPE_OPTIONSETVALUES uint32 = uint32(15035)
+const OpcuaNodeIdServices_ATTRIBUTEWRITEMASK_OPTIONSETVALUES uint32 = uint32(15036)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DEPRECATED uint32 = uint32(15037)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODINPUTVALUES uint32 = uint32(15038)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DEPRECATED uint32 = uint32(15039)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_PROGRAMDIAGNOSTIC_LASTMETHODOUTPUTVALUES uint32 = uint32(15040)
+const OpcuaNodeIdServices_KEYVALUEPAIR_ENCODING_DEFAULTJSON uint32 = uint32(15041)
+const OpcuaNodeIdServices_IDENTITYMAPPINGRULETYPE_ENCODING_DEFAULTJSON uint32 = uint32(15042)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER_MAXPASTKEYCOUNT uint32 = uint32(15043)
+const OpcuaNodeIdServices_TRUSTLISTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15044)
+const OpcuaNodeIdServices_DECIMALDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15045)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE_KEYLIFETIME uint32 = uint32(15046)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE_SECURITYPOLICYURI uint32 = uint32(15047)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE_MAXFUTUREKEYCOUNT uint32 = uint32(15048)
+const OpcuaNodeIdServices_CONFIGURATIONVERSIONDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15049)
+const OpcuaNodeIdServices_DATASETMETADATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15050)
+const OpcuaNodeIdServices_FIELDMETADATA_ENCODING_DEFAULTJSON uint32 = uint32(15051)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_MODIFYFIELDSELECTION uint32 = uint32(15052)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_MODIFYFIELDSELECTION_INPUTARGUMENTS uint32 = uint32(15053)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPEMODIFYFIELDSELECTIONMETHODTYPE uint32 = uint32(15054)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPEMODIFYFIELDSELECTIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15055)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE_MAXPASTKEYCOUNT uint32 = uint32(15056)
+const OpcuaNodeIdServices_DATATYPEDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15057)
+const OpcuaNodeIdServices_STRUCTUREDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15058)
+const OpcuaNodeIdServices_ENUMDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15059)
+const OpcuaNodeIdServices_PUBLISHEDVARIABLEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15060)
+const OpcuaNodeIdServices_FIELDTARGETDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15061)
+const OpcuaNodeIdServices_ROLEPERMISSIONTYPE_ENCODING_DEFAULTJSON uint32 = uint32(15062)
+const OpcuaNodeIdServices_DATATYPEDEFINITION_ENCODING_DEFAULTJSON uint32 = uint32(15063)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE uint32 = uint32(15064)
+const OpcuaNodeIdServices_STRUCTUREFIELD_ENCODING_DEFAULTJSON uint32 = uint32(15065)
+const OpcuaNodeIdServices_STRUCTUREDEFINITION_ENCODING_DEFAULTJSON uint32 = uint32(15066)
+const OpcuaNodeIdServices_ENUMDEFINITION_ENCODING_DEFAULTJSON uint32 = uint32(15067)
+const OpcuaNodeIdServices_NODE_ENCODING_DEFAULTJSON uint32 = uint32(15068)
+const OpcuaNodeIdServices_INSTANCENODE_ENCODING_DEFAULTJSON uint32 = uint32(15069)
+const OpcuaNodeIdServices_TYPENODE_ENCODING_DEFAULTJSON uint32 = uint32(15070)
+const OpcuaNodeIdServices_OBJECTNODE_ENCODING_DEFAULTJSON uint32 = uint32(15071)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE_DISCOVERYADDRESS uint32 = uint32(15072)
+const OpcuaNodeIdServices_OBJECTTYPENODE_ENCODING_DEFAULTJSON uint32 = uint32(15073)
+const OpcuaNodeIdServices_VARIABLENODE_ENCODING_DEFAULTJSON uint32 = uint32(15074)
+const OpcuaNodeIdServices_VARIABLETYPENODE_ENCODING_DEFAULTJSON uint32 = uint32(15075)
+const OpcuaNodeIdServices_REFERENCETYPENODE_ENCODING_DEFAULTJSON uint32 = uint32(15076)
+const OpcuaNodeIdServices_METHODNODE_ENCODING_DEFAULTJSON uint32 = uint32(15077)
+const OpcuaNodeIdServices_VIEWNODE_ENCODING_DEFAULTJSON uint32 = uint32(15078)
+const OpcuaNodeIdServices_DATATYPENODE_ENCODING_DEFAULTJSON uint32 = uint32(15079)
+const OpcuaNodeIdServices_REFERENCENODE_ENCODING_DEFAULTJSON uint32 = uint32(15080)
+const OpcuaNodeIdServices_ARGUMENT_ENCODING_DEFAULTJSON uint32 = uint32(15081)
+const OpcuaNodeIdServices_ENUMVALUETYPE_ENCODING_DEFAULTJSON uint32 = uint32(15082)
+const OpcuaNodeIdServices_ENUMFIELD_ENCODING_DEFAULTJSON uint32 = uint32(15083)
+const OpcuaNodeIdServices_OPTIONSET_ENCODING_DEFAULTJSON uint32 = uint32(15084)
+const OpcuaNodeIdServices_UNION_ENCODING_DEFAULTJSON uint32 = uint32(15085)
+const OpcuaNodeIdServices_TIMEZONEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15086)
+const OpcuaNodeIdServices_APPLICATIONDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15087)
+const OpcuaNodeIdServices_REQUESTHEADER_ENCODING_DEFAULTJSON uint32 = uint32(15088)
+const OpcuaNodeIdServices_RESPONSEHEADER_ENCODING_DEFAULTJSON uint32 = uint32(15089)
+const OpcuaNodeIdServices_SERVICEFAULT_ENCODING_DEFAULTJSON uint32 = uint32(15090)
+const OpcuaNodeIdServices_SESSIONLESSINVOKEREQUESTTYPE_ENCODING_DEFAULTJSON uint32 = uint32(15091)
+const OpcuaNodeIdServices_SESSIONLESSINVOKERESPONSETYPE_ENCODING_DEFAULTJSON uint32 = uint32(15092)
+const OpcuaNodeIdServices_FINDSERVERSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15093)
+const OpcuaNodeIdServices_FINDSERVERSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15094)
+const OpcuaNodeIdServices_SERVERONNETWORK_ENCODING_DEFAULTJSON uint32 = uint32(15095)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15096)
+const OpcuaNodeIdServices_FINDSERVERSONNETWORKRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15097)
+const OpcuaNodeIdServices_USERTOKENPOLICY_ENCODING_DEFAULTJSON uint32 = uint32(15098)
+const OpcuaNodeIdServices_ENDPOINTDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15099)
+const OpcuaNodeIdServices_GETENDPOINTSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15100)
+const OpcuaNodeIdServices_GETENDPOINTSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15101)
+const OpcuaNodeIdServices_REGISTEREDSERVER_ENCODING_DEFAULTJSON uint32 = uint32(15102)
+const OpcuaNodeIdServices_REGISTERSERVERREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15103)
+const OpcuaNodeIdServices_REGISTERSERVERRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15104)
+const OpcuaNodeIdServices_DISCOVERYCONFIGURATION_ENCODING_DEFAULTJSON uint32 = uint32(15105)
+const OpcuaNodeIdServices_MDNSDISCOVERYCONFIGURATION_ENCODING_DEFAULTJSON uint32 = uint32(15106)
+const OpcuaNodeIdServices_REGISTERSERVER2REQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15107)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETTYPE uint32 = uint32(15108)
+const OpcuaNodeIdServices_CHOICESTATETYPE uint32 = uint32(15109)
+const OpcuaNodeIdServices_CHOICESTATETYPE_STATENUMBER uint32 = uint32(15110)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE uint32 = uint32(15111)
+const OpcuaNodeIdServices_HASGUARD uint32 = uint32(15112)
+const OpcuaNodeIdServices_GUARDVARIABLETYPE uint32 = uint32(15113)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_TARGETVARIABLES uint32 = uint32(15114)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_ADDTARGETVARIABLES uint32 = uint32(15115)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_ADDTARGETVARIABLES_INPUTARGUMENTS uint32 = uint32(15116)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_ADDTARGETVARIABLES_OUTPUTARGUMENTS uint32 = uint32(15117)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_REMOVETARGETVARIABLES uint32 = uint32(15118)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_REMOVETARGETVARIABLES_INPUTARGUMENTS uint32 = uint32(15119)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPE_REMOVETARGETVARIABLES_OUTPUTARGUMENTS uint32 = uint32(15120)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEADDTARGETVARIABLESMETHODTYPE uint32 = uint32(15121)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEADDTARGETVARIABLESMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15122)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEADDTARGETVARIABLESMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15123)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEREMOVETARGETVARIABLESMETHODTYPE uint32 = uint32(15124)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEREMOVETARGETVARIABLESMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15125)
+const OpcuaNodeIdServices_TARGETVARIABLESTYPEREMOVETARGETVARIABLESMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15126)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETMIRRORTYPE uint32 = uint32(15127)
+const OpcuaNodeIdServices_EXPRESSIONGUARDVARIABLETYPE uint32 = uint32(15128)
+const OpcuaNodeIdServices_EXPRESSIONGUARDVARIABLETYPE_EXPRESSION uint32 = uint32(15129)
+const OpcuaNodeIdServices_REGISTERSERVER2RESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15130)
+const OpcuaNodeIdServices_CHANNELSECURITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15131)
+const OpcuaNodeIdServices_OPENSECURECHANNELREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15132)
+const OpcuaNodeIdServices_OPENSECURECHANNELRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15133)
+const OpcuaNodeIdServices_CLOSESECURECHANNELREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15134)
+const OpcuaNodeIdServices_CLOSESECURECHANNELRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15135)
+const OpcuaNodeIdServices_SIGNEDSOFTWARECERTIFICATE_ENCODING_DEFAULTJSON uint32 = uint32(15136)
+const OpcuaNodeIdServices_SIGNATUREDATA_ENCODING_DEFAULTJSON uint32 = uint32(15137)
+const OpcuaNodeIdServices_CREATESESSIONREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15138)
+const OpcuaNodeIdServices_CREATESESSIONRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15139)
+const OpcuaNodeIdServices_USERIDENTITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15140)
+const OpcuaNodeIdServices_ANONYMOUSIDENTITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15141)
+const OpcuaNodeIdServices_USERNAMEIDENTITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15142)
+const OpcuaNodeIdServices_X509IDENTITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15143)
+const OpcuaNodeIdServices_ISSUEDIDENTITYTOKEN_ENCODING_DEFAULTJSON uint32 = uint32(15144)
+const OpcuaNodeIdServices_ACTIVATESESSIONREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15145)
+const OpcuaNodeIdServices_ACTIVATESESSIONRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15146)
+const OpcuaNodeIdServices_CLOSESESSIONREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15147)
+const OpcuaNodeIdServices_CLOSESESSIONRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15148)
+const OpcuaNodeIdServices_CANCELREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15149)
+const OpcuaNodeIdServices_CANCELRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15150)
+const OpcuaNodeIdServices_NODEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15151)
+const OpcuaNodeIdServices_OBJECTATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15152)
+const OpcuaNodeIdServices_VARIABLEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15153)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE_DISCOVERYADDRESS_NETWORKINTERFACE uint32 = uint32(15154)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTTYPE uint32 = uint32(15155)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTTYPE_RESOURCEURI uint32 = uint32(15156)
+const OpcuaNodeIdServices_METHODATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15157)
+const OpcuaNodeIdServices_OBJECTTYPEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15158)
+const OpcuaNodeIdServices_VARIABLETYPEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15159)
+const OpcuaNodeIdServices_REFERENCETYPEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15160)
+const OpcuaNodeIdServices_DATATYPEATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15161)
+const OpcuaNodeIdServices_VIEWATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15162)
+const OpcuaNodeIdServices_GENERICATTRIBUTEVALUE_ENCODING_DEFAULTJSON uint32 = uint32(15163)
+const OpcuaNodeIdServices_GENERICATTRIBUTES_ENCODING_DEFAULTJSON uint32 = uint32(15164)
+const OpcuaNodeIdServices_ADDNODESITEM_ENCODING_DEFAULTJSON uint32 = uint32(15165)
+const OpcuaNodeIdServices_ADDNODESRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15166)
+const OpcuaNodeIdServices_ADDNODESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15167)
+const OpcuaNodeIdServices_ADDNODESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15168)
+const OpcuaNodeIdServices_ADDREFERENCESITEM_ENCODING_DEFAULTJSON uint32 = uint32(15169)
+const OpcuaNodeIdServices_ADDREFERENCESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15170)
+const OpcuaNodeIdServices_ADDREFERENCESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15171)
+const OpcuaNodeIdServices_DELETENODESITEM_ENCODING_DEFAULTJSON uint32 = uint32(15172)
+const OpcuaNodeIdServices_DELETENODESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15173)
+const OpcuaNodeIdServices_DELETENODESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15174)
+const OpcuaNodeIdServices_DELETEREFERENCESITEM_ENCODING_DEFAULTJSON uint32 = uint32(15175)
+const OpcuaNodeIdServices_DELETEREFERENCESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15176)
+const OpcuaNodeIdServices_DELETEREFERENCESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15177)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTTYPE_AUTHENTICATIONPROFILEURI uint32 = uint32(15178)
+const OpcuaNodeIdServices_VIEWDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15179)
+const OpcuaNodeIdServices_BROWSEDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15180)
+const OpcuaNodeIdServices_USERCREDENTIALCERTIFICATETYPE uint32 = uint32(15181)
+const OpcuaNodeIdServices_REFERENCEDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15182)
+const OpcuaNodeIdServices_BROWSERESULT_ENCODING_DEFAULTJSON uint32 = uint32(15183)
+const OpcuaNodeIdServices_BROWSEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15184)
+const OpcuaNodeIdServices_BROWSERESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15185)
+const OpcuaNodeIdServices_BROWSENEXTREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15186)
+const OpcuaNodeIdServices_BROWSENEXTRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15187)
+const OpcuaNodeIdServices_RELATIVEPATHELEMENT_ENCODING_DEFAULTJSON uint32 = uint32(15188)
+const OpcuaNodeIdServices_RELATIVEPATH_ENCODING_DEFAULTJSON uint32 = uint32(15189)
+const OpcuaNodeIdServices_BROWSEPATH_ENCODING_DEFAULTJSON uint32 = uint32(15190)
+const OpcuaNodeIdServices_BROWSEPATHTARGET_ENCODING_DEFAULTJSON uint32 = uint32(15191)
+const OpcuaNodeIdServices_BROWSEPATHRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15192)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15193)
+const OpcuaNodeIdServices_TRANSLATEBROWSEPATHSTONODEIDSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15194)
+const OpcuaNodeIdServices_REGISTERNODESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15195)
+const OpcuaNodeIdServices_REGISTERNODESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15196)
+const OpcuaNodeIdServices_UNREGISTERNODESREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15197)
+const OpcuaNodeIdServices_UNREGISTERNODESRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15198)
+const OpcuaNodeIdServices_ENDPOINTCONFIGURATION_ENCODING_DEFAULTJSON uint32 = uint32(15199)
+const OpcuaNodeIdServices_QUERYDATADESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15200)
+const OpcuaNodeIdServices_NODETYPEDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15201)
+const OpcuaNodeIdServices_QUERYDATASET_ENCODING_DEFAULTJSON uint32 = uint32(15202)
+const OpcuaNodeIdServices_NODEREFERENCE_ENCODING_DEFAULTJSON uint32 = uint32(15203)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENT_ENCODING_DEFAULTJSON uint32 = uint32(15204)
+const OpcuaNodeIdServices_CONTENTFILTER_ENCODING_DEFAULTJSON uint32 = uint32(15205)
+const OpcuaNodeIdServices_FILTEROPERAND_ENCODING_DEFAULTJSON uint32 = uint32(15206)
+const OpcuaNodeIdServices_ELEMENTOPERAND_ENCODING_DEFAULTJSON uint32 = uint32(15207)
+const OpcuaNodeIdServices_LITERALOPERAND_ENCODING_DEFAULTJSON uint32 = uint32(15208)
+const OpcuaNodeIdServices_ATTRIBUTEOPERAND_ENCODING_DEFAULTJSON uint32 = uint32(15209)
+const OpcuaNodeIdServices_SIMPLEATTRIBUTEOPERAND_ENCODING_DEFAULTJSON uint32 = uint32(15210)
+const OpcuaNodeIdServices_CONTENTFILTERELEMENTRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15211)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYKEYS uint32 = uint32(15212)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYKEYS_INPUTARGUMENTS uint32 = uint32(15213)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYKEYS_OUTPUTARGUMENTS uint32 = uint32(15214)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYKEYS uint32 = uint32(15215)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYKEYS_INPUTARGUMENTS uint32 = uint32(15216)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYKEYS_OUTPUTARGUMENTS uint32 = uint32(15217)
+const OpcuaNodeIdServices_GETSECURITYKEYSMETHODTYPE uint32 = uint32(15218)
+const OpcuaNodeIdServices_GETSECURITYKEYSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15219)
+const OpcuaNodeIdServices_GETSECURITYKEYSMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15220)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_DATASETMETADATA uint32 = uint32(15221)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER uint32 = uint32(15222)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS uint32 = uint32(15223)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(15224)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(15225)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(15226)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(15227)
+const OpcuaNodeIdServices_CONTENTFILTERRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15228)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETMETADATA uint32 = uint32(15229)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER uint32 = uint32(15230)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS uint32 = uint32(15231)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(15232)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(15233)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(15234)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(15235)
+const OpcuaNodeIdServices_PARSINGRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15236)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETMETADATA uint32 = uint32(15237)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER uint32 = uint32(15238)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS uint32 = uint32(15239)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(15240)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(15241)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(15242)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(15243)
+const OpcuaNodeIdServices_QUERYFIRSTREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15244)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETMETADATA uint32 = uint32(15245)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTTYPE_RESOURCEURI uint32 = uint32(15246)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTTYPE_AUTHENTICATIONPROFILEURI uint32 = uint32(15247)
+const OpcuaNodeIdServices_CREATECREDENTIALMETHODTYPE uint32 = uint32(15248)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTTYPE_REQUESTEDDELIVERYGUARANTEE uint32 = uint32(15249)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTTYPE_RESOURCEURI uint32 = uint32(15250)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTTYPE_AUTHENTICATIONPROFILEURI uint32 = uint32(15251)
+const OpcuaNodeIdServices_QUERYFIRSTRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15252)
+const OpcuaNodeIdServices_CREATECREDENTIALMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15253)
+const OpcuaNodeIdServices_QUERYNEXTREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15254)
+const OpcuaNodeIdServices_QUERYNEXTRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15255)
+const OpcuaNodeIdServices_READVALUEID_ENCODING_DEFAULTJSON uint32 = uint32(15256)
+const OpcuaNodeIdServices_READREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15257)
+const OpcuaNodeIdServices_READRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15258)
+const OpcuaNodeIdServices_HISTORYREADVALUEID_ENCODING_DEFAULTJSON uint32 = uint32(15259)
+const OpcuaNodeIdServices_HISTORYREADRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15260)
+const OpcuaNodeIdServices_HISTORYREADDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15261)
+const OpcuaNodeIdServices_READEVENTDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15262)
+const OpcuaNodeIdServices_READRAWMODIFIEDDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15263)
+const OpcuaNodeIdServices_READPROCESSEDDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15264)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_STATUS uint32 = uint32(15265)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_STATUS_STATE uint32 = uint32(15266)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_STATUS_ENABLE uint32 = uint32(15267)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_STATUS_DISABLE uint32 = uint32(15268)
+const OpcuaNodeIdServices_READATTIMEDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15269)
+const OpcuaNodeIdServices_HISTORYDATA_ENCODING_DEFAULTJSON uint32 = uint32(15270)
+const OpcuaNodeIdServices_MODIFICATIONINFO_ENCODING_DEFAULTJSON uint32 = uint32(15271)
+const OpcuaNodeIdServices_HISTORYMODIFIEDDATA_ENCODING_DEFAULTJSON uint32 = uint32(15272)
+const OpcuaNodeIdServices_HISTORYEVENT_ENCODING_DEFAULTJSON uint32 = uint32(15273)
+const OpcuaNodeIdServices_HISTORYREADREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15274)
+const OpcuaNodeIdServices_HISTORYREADRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15275)
+const OpcuaNodeIdServices_WRITEVALUE_ENCODING_DEFAULTJSON uint32 = uint32(15276)
+const OpcuaNodeIdServices_WRITEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15277)
+const OpcuaNodeIdServices_WRITERESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15278)
+const OpcuaNodeIdServices_HISTORYUPDATEDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15279)
+const OpcuaNodeIdServices_UPDATEDATADETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15280)
+const OpcuaNodeIdServices_UPDATESTRUCTUREDATADETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15281)
+const OpcuaNodeIdServices_UPDATEEVENTDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15282)
+const OpcuaNodeIdServices_DELETERAWMODIFIEDDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15283)
+const OpcuaNodeIdServices_DELETEATTIMEDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15284)
+const OpcuaNodeIdServices_DELETEEVENTDETAILS_ENCODING_DEFAULTJSON uint32 = uint32(15285)
+const OpcuaNodeIdServices_HISTORYUPDATERESULT_ENCODING_DEFAULTJSON uint32 = uint32(15286)
+const OpcuaNodeIdServices_HISTORYUPDATEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15287)
+const OpcuaNodeIdServices_HISTORYUPDATERESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15288)
+const OpcuaNodeIdServices_CALLMETHODREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15289)
+const OpcuaNodeIdServices_CALLMETHODRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15290)
+const OpcuaNodeIdServices_CALLREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15291)
+const OpcuaNodeIdServices_CALLRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15292)
+const OpcuaNodeIdServices_MONITORINGFILTER_ENCODING_DEFAULTJSON uint32 = uint32(15293)
+const OpcuaNodeIdServices_DATACHANGEFILTER_ENCODING_DEFAULTJSON uint32 = uint32(15294)
+const OpcuaNodeIdServices_EVENTFILTER_ENCODING_DEFAULTJSON uint32 = uint32(15295)
+const OpcuaNodeIdServices_HASDATASETWRITER uint32 = uint32(15296)
+const OpcuaNodeIdServices_HASDATASETREADER uint32 = uint32(15297)
+const OpcuaNodeIdServices_DATASETWRITERTYPE uint32 = uint32(15298)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_STATUS uint32 = uint32(15299)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_STATUS_STATE uint32 = uint32(15300)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_STATUS_ENABLE uint32 = uint32(15301)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_STATUS_DISABLE uint32 = uint32(15302)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_TRANSPORTSETTINGS uint32 = uint32(15303)
+const OpcuaNodeIdServices_AGGREGATECONFIGURATION_ENCODING_DEFAULTJSON uint32 = uint32(15304)
+const OpcuaNodeIdServices_DATASETWRITERTRANSPORTTYPE uint32 = uint32(15305)
+const OpcuaNodeIdServices_DATASETREADERTYPE uint32 = uint32(15306)
+const OpcuaNodeIdServices_DATASETREADERTYPE_STATUS uint32 = uint32(15307)
+const OpcuaNodeIdServices_DATASETREADERTYPE_STATUS_STATE uint32 = uint32(15308)
+const OpcuaNodeIdServices_DATASETREADERTYPE_STATUS_ENABLE uint32 = uint32(15309)
+const OpcuaNodeIdServices_DATASETREADERTYPE_STATUS_DISABLE uint32 = uint32(15310)
+const OpcuaNodeIdServices_DATASETREADERTYPE_TRANSPORTSETTINGS uint32 = uint32(15311)
+const OpcuaNodeIdServices_AGGREGATEFILTER_ENCODING_DEFAULTJSON uint32 = uint32(15312)
+const OpcuaNodeIdServices_MONITORINGFILTERRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15313)
+const OpcuaNodeIdServices_EVENTFILTERRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15314)
+const OpcuaNodeIdServices_AGGREGATEFILTERRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15315)
+const OpcuaNodeIdServices_DATASETREADERTYPE_SUBSCRIBEDDATASET uint32 = uint32(15316)
+const OpcuaNodeIdServices_ELSEGUARDVARIABLETYPE uint32 = uint32(15317)
+const OpcuaNodeIdServices_BASEANALOGTYPE uint32 = uint32(15318)
+const OpcuaNodeIdServices_DATASETREADERTRANSPORTTYPE uint32 = uint32(15319)
+const OpcuaNodeIdServices_MONITORINGPARAMETERS_ENCODING_DEFAULTJSON uint32 = uint32(15320)
+const OpcuaNodeIdServices_MONITOREDITEMCREATEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15321)
+const OpcuaNodeIdServices_MONITOREDITEMCREATERESULT_ENCODING_DEFAULTJSON uint32 = uint32(15322)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15323)
+const OpcuaNodeIdServices_CREATEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15324)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15325)
+const OpcuaNodeIdServices_MONITOREDITEMMODIFYRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15326)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15327)
+const OpcuaNodeIdServices_MODIFYMONITOREDITEMSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15328)
+const OpcuaNodeIdServices_SETMONITORINGMODEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15329)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTTYPE_REQUESTEDDELIVERYGUARANTEE uint32 = uint32(15330)
+const OpcuaNodeIdServices_SETMONITORINGMODERESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15331)
+const OpcuaNodeIdServices_SETTRIGGERINGREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15332)
+const OpcuaNodeIdServices_SETTRIGGERINGRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15333)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTTYPE_RESOURCEURI uint32 = uint32(15334)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15335)
+const OpcuaNodeIdServices_DELETEMONITOREDITEMSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15336)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15337)
+const OpcuaNodeIdServices_CREATESUBSCRIPTIONRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15338)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15339)
+const OpcuaNodeIdServices_MODIFYSUBSCRIPTIONRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15340)
+const OpcuaNodeIdServices_SETPUBLISHINGMODEREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15341)
+const OpcuaNodeIdServices_SETPUBLISHINGMODERESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15342)
+const OpcuaNodeIdServices_NOTIFICATIONMESSAGE_ENCODING_DEFAULTJSON uint32 = uint32(15343)
+const OpcuaNodeIdServices_NOTIFICATIONDATA_ENCODING_DEFAULTJSON uint32 = uint32(15344)
+const OpcuaNodeIdServices_DATACHANGENOTIFICATION_ENCODING_DEFAULTJSON uint32 = uint32(15345)
+const OpcuaNodeIdServices_MONITOREDITEMNOTIFICATION_ENCODING_DEFAULTJSON uint32 = uint32(15346)
+const OpcuaNodeIdServices_EVENTNOTIFICATIONLIST_ENCODING_DEFAULTJSON uint32 = uint32(15347)
+const OpcuaNodeIdServices_EVENTFIELDLIST_ENCODING_DEFAULTJSON uint32 = uint32(15348)
+const OpcuaNodeIdServices_HISTORYEVENTFIELDLIST_ENCODING_DEFAULTJSON uint32 = uint32(15349)
+const OpcuaNodeIdServices_STATUSCHANGENOTIFICATION_ENCODING_DEFAULTJSON uint32 = uint32(15350)
+const OpcuaNodeIdServices_SUBSCRIPTIONACKNOWLEDGEMENT_ENCODING_DEFAULTJSON uint32 = uint32(15351)
+const OpcuaNodeIdServices_PUBLISHREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15352)
+const OpcuaNodeIdServices_PUBLISHRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15353)
+const OpcuaNodeIdServices_REPUBLISHREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15354)
+const OpcuaNodeIdServices_REPUBLISHRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15355)
+const OpcuaNodeIdServices_TRANSFERRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15356)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15357)
+const OpcuaNodeIdServices_TRANSFERSUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15358)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSREQUEST_ENCODING_DEFAULTJSON uint32 = uint32(15359)
+const OpcuaNodeIdServices_DELETESUBSCRIPTIONSRESPONSE_ENCODING_DEFAULTJSON uint32 = uint32(15360)
+const OpcuaNodeIdServices_BUILDINFO_ENCODING_DEFAULTJSON uint32 = uint32(15361)
+const OpcuaNodeIdServices_REDUNDANTSERVERDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15362)
+const OpcuaNodeIdServices_ENDPOINTURLLISTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15363)
+const OpcuaNodeIdServices_NETWORKGROUPDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15364)
+const OpcuaNodeIdServices_SAMPLINGINTERVALDIAGNOSTICSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15365)
+const OpcuaNodeIdServices_SERVERDIAGNOSTICSSUMMARYDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15366)
+const OpcuaNodeIdServices_SERVERSTATUSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15367)
+const OpcuaNodeIdServices_SESSIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15368)
+const OpcuaNodeIdServices_SESSIONSECURITYDIAGNOSTICSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15369)
+const OpcuaNodeIdServices_SERVICECOUNTERDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15370)
+const OpcuaNodeIdServices_STATUSRESULT_ENCODING_DEFAULTJSON uint32 = uint32(15371)
+const OpcuaNodeIdServices_SUBSCRIPTIONDIAGNOSTICSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15372)
+const OpcuaNodeIdServices_MODELCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15373)
+const OpcuaNodeIdServices_SEMANTICCHANGESTRUCTUREDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15374)
+const OpcuaNodeIdServices_RANGE_ENCODING_DEFAULTJSON uint32 = uint32(15375)
+const OpcuaNodeIdServices_EUINFORMATION_ENCODING_DEFAULTJSON uint32 = uint32(15376)
+const OpcuaNodeIdServices_COMPLEXNUMBERTYPE_ENCODING_DEFAULTJSON uint32 = uint32(15377)
+const OpcuaNodeIdServices_DOUBLECOMPLEXNUMBERTYPE_ENCODING_DEFAULTJSON uint32 = uint32(15378)
+const OpcuaNodeIdServices_AXISINFORMATION_ENCODING_DEFAULTJSON uint32 = uint32(15379)
+const OpcuaNodeIdServices_XVTYPE_ENCODING_DEFAULTJSON uint32 = uint32(15380)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTICDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15381)
+const OpcuaNodeIdServices_ANNOTATION_ENCODING_DEFAULTJSON uint32 = uint32(15382)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE uint32 = uint32(15383)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_CREATESESSIONID uint32 = uint32(15384)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_CREATECLIENTNAME uint32 = uint32(15385)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_INVOCATIONCREATIONTIME uint32 = uint32(15386)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTTRANSITIONTIME uint32 = uint32(15387)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODCALL uint32 = uint32(15388)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODSESSIONID uint32 = uint32(15389)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODINPUTARGUMENTS uint32 = uint32(15390)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODOUTPUTARGUMENTS uint32 = uint32(15391)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODINPUTVALUES uint32 = uint32(15392)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODOUTPUTVALUES uint32 = uint32(15393)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODCALLTIME uint32 = uint32(15394)
+const OpcuaNodeIdServices_PROGRAMDIAGNOSTIC2TYPE_LASTMETHODRETURNSTATUS uint32 = uint32(15395)
+const OpcuaNodeIdServices_ACCESSLEVELEXTYPE uint32 = uint32(15406)
+const OpcuaNodeIdServices_ACCESSLEVELEXTYPE_OPTIONSETVALUES uint32 = uint32(15407)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_APPLICATIONSEXCLUDE uint32 = uint32(15408)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ENDPOINTSEXCLUDE uint32 = uint32(15409)
+const OpcuaNodeIdServices_ROLETYPE_APPLICATIONSEXCLUDE uint32 = uint32(15410)
+const OpcuaNodeIdServices_ROLETYPE_ENDPOINTSEXCLUDE uint32 = uint32(15411)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_APPLICATIONSEXCLUDE uint32 = uint32(15412)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ENDPOINTSEXCLUDE uint32 = uint32(15413)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_APPLICATIONSEXCLUDE uint32 = uint32(15414)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ENDPOINTSEXCLUDE uint32 = uint32(15415)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_APPLICATIONSEXCLUDE uint32 = uint32(15416)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ENDPOINTSEXCLUDE uint32 = uint32(15417)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_APPLICATIONSEXCLUDE uint32 = uint32(15418)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTTYPE_AUTHENTICATIONPROFILEURI uint32 = uint32(15419)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTTYPE_REQUESTEDDELIVERYGUARANTEE uint32 = uint32(15420)
+const OpcuaNodeIdServices_SIMPLETYPEDESCRIPTION_ENCODING_DEFAULTBINARY uint32 = uint32(15421)
+const OpcuaNodeIdServices_UABINARYFILEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15422)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ENDPOINTSEXCLUDE uint32 = uint32(15423)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_APPLICATIONSEXCLUDE uint32 = uint32(15424)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ENDPOINTSEXCLUDE uint32 = uint32(15425)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_APPLICATIONSEXCLUDE uint32 = uint32(15426)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ENDPOINTSEXCLUDE uint32 = uint32(15427)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_APPLICATIONSEXCLUDE uint32 = uint32(15428)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ENDPOINTSEXCLUDE uint32 = uint32(15429)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_APPLICATIONSEXCLUDE uint32 = uint32(15430)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYGROUP uint32 = uint32(15431)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15432)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_GETSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15433)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS uint32 = uint32(15434)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS_ADDSECURITYGROUP uint32 = uint32(15435)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS_ADDSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15436)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS_ADDSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15437)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS_REMOVESECURITYGROUP uint32 = uint32(15438)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SECURITYGROUPS_REMOVESECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15439)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYGROUP uint32 = uint32(15440)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15441)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_GETSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15442)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS uint32 = uint32(15443)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS_ADDSECURITYGROUP uint32 = uint32(15444)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS_ADDSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15445)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS_ADDSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15446)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS_REMOVESECURITYGROUP uint32 = uint32(15447)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SECURITYGROUPS_REMOVESECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15448)
+const OpcuaNodeIdServices_GETSECURITYGROUPMETHODTYPE uint32 = uint32(15449)
+const OpcuaNodeIdServices_GETSECURITYGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15450)
+const OpcuaNodeIdServices_GETSECURITYGROUPMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15451)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE uint32 = uint32(15452)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER uint32 = uint32(15453)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER_ADDSECURITYGROUP uint32 = uint32(15454)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER_ADDSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15455)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER_ADDSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15456)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER_REMOVESECURITYGROUP uint32 = uint32(15457)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPFOLDERNAME_PLACEHOLDER_REMOVESECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15458)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER uint32 = uint32(15459)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_SECURITYGROUPNAME_PLACEHOLDER_SECURITYGROUPID uint32 = uint32(15460)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_ADDSECURITYGROUP uint32 = uint32(15461)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_ADDSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15462)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_ADDSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15463)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_REMOVESECURITYGROUP uint32 = uint32(15464)
+const OpcuaNodeIdServices_SECURITYGROUPFOLDERTYPE_REMOVESECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15465)
+const OpcuaNodeIdServices_ADDSECURITYGROUPMETHODTYPE uint32 = uint32(15466)
+const OpcuaNodeIdServices_ADDSECURITYGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15467)
+const OpcuaNodeIdServices_ADDSECURITYGROUPMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15468)
+const OpcuaNodeIdServices_REMOVESECURITYGROUPMETHODTYPE uint32 = uint32(15469)
+const OpcuaNodeIdServices_REMOVESECURITYGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15470)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE uint32 = uint32(15471)
+const OpcuaNodeIdServices_SECURITYGROUPTYPE_SECURITYGROUPID uint32 = uint32(15472)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS uint32 = uint32(15473)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS_ADDEXTENSIONFIELD uint32 = uint32(15474)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS_ADDEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15475)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS_ADDEXTENSIONFIELD_OUTPUTARGUMENTS uint32 = uint32(15476)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD uint32 = uint32(15477)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15478)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15479)
+const OpcuaNodeIdServices_WRITERGROUPDATATYPE uint32 = uint32(15480)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS uint32 = uint32(15481)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD uint32 = uint32(15482)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15483)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_OUTPUTARGUMENTS uint32 = uint32(15484)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD uint32 = uint32(15485)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15486)
+const OpcuaNodeIdServices_STRUCTUREDESCRIPTION uint32 = uint32(15487)
+const OpcuaNodeIdServices_ENUMDESCRIPTION uint32 = uint32(15488)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE uint32 = uint32(15489)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_EXTENSIONFIELDNAME_PLACEHOLDER uint32 = uint32(15490)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_ADDEXTENSIONFIELD uint32 = uint32(15491)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_ADDEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15492)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_ADDEXTENSIONFIELD_OUTPUTARGUMENTS uint32 = uint32(15493)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_REMOVEEXTENSIONFIELD uint32 = uint32(15494)
+const OpcuaNodeIdServices_EXTENSIONFIELDSTYPE_REMOVEEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15495)
+const OpcuaNodeIdServices_ADDEXTENSIONFIELDMETHODTYPE uint32 = uint32(15496)
+const OpcuaNodeIdServices_ADDEXTENSIONFIELDMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15497)
+const OpcuaNodeIdServices_ADDEXTENSIONFIELDMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15498)
+const OpcuaNodeIdServices_REMOVEEXTENSIONFIELDMETHODTYPE uint32 = uint32(15499)
+const OpcuaNodeIdServices_REMOVEEXTENSIONFIELDMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15500)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLETYPEDESCRIPTION uint32 = uint32(15501)
+const OpcuaNodeIdServices_NETWORKADDRESSDATATYPE uint32 = uint32(15502)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS uint32 = uint32(15503)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD uint32 = uint32(15504)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15505)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_OUTPUTARGUMENTS uint32 = uint32(15506)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD uint32 = uint32(15507)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15508)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLETYPEDESCRIPTION_DATATYPEVERSION uint32 = uint32(15509)
+const OpcuaNodeIdServices_NETWORKADDRESSURLDATATYPE uint32 = uint32(15510)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS uint32 = uint32(15511)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD uint32 = uint32(15512)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15513)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS_ADDEXTENSIONFIELD_OUTPUTARGUMENTS uint32 = uint32(15514)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD uint32 = uint32(15515)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_EXTENSIONFIELDS_REMOVEEXTENSIONFIELD_INPUTARGUMENTS uint32 = uint32(15516)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_MODIFYFIELDSELECTION_OUTPUTARGUMENTS uint32 = uint32(15517)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPEMODIFYFIELDSELECTIONMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15518)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SIMPLETYPEDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15519)
+const OpcuaNodeIdServices_READERGROUPDATATYPE uint32 = uint32(15520)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UABINARYFILEDATATYPE uint32 = uint32(15521)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UABINARYFILEDATATYPE_DATATYPEVERSION uint32 = uint32(15522)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UABINARYFILEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15523)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE uint32 = uint32(15524)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15525)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15526)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ENDPOINTSEXCLUDE uint32 = uint32(15527)
+const OpcuaNodeIdServices_ENDPOINTTYPE uint32 = uint32(15528)
+const OpcuaNodeIdServices_SIMPLETYPEDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(15529)
+const OpcuaNodeIdServices_PUBSUBCONFIGURATIONDATATYPE uint32 = uint32(15530)
+const OpcuaNodeIdServices_UABINARYFILEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15531)
+const OpcuaNodeIdServices_DATAGRAMWRITERGROUPTRANSPORTDATATYPE uint32 = uint32(15532)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE uint32 = uint32(15533)
+const OpcuaNodeIdServices_DATATYPESCHEMAHEADER uint32 = uint32(15534)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE uint32 = uint32(15535)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_EVENTID uint32 = uint32(15536)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_EVENTTYPE uint32 = uint32(15537)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_SOURCENODE uint32 = uint32(15538)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_SOURCENAME uint32 = uint32(15539)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_TIME uint32 = uint32(15540)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_RECEIVETIME uint32 = uint32(15541)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_LOCALTIME uint32 = uint32(15542)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_MESSAGE uint32 = uint32(15543)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_SEVERITY uint32 = uint32(15544)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_CONNECTIONID uint32 = uint32(15545)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_GROUPID uint32 = uint32(15546)
+const OpcuaNodeIdServices_PUBSUBSTATUSEVENTTYPE_STATE uint32 = uint32(15547)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE uint32 = uint32(15548)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_EVENTID uint32 = uint32(15549)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_EVENTTYPE uint32 = uint32(15550)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_SOURCENODE uint32 = uint32(15551)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_SOURCENAME uint32 = uint32(15552)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_TIME uint32 = uint32(15553)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_RECEIVETIME uint32 = uint32(15554)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_LOCALTIME uint32 = uint32(15555)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_MESSAGE uint32 = uint32(15556)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_SEVERITY uint32 = uint32(15557)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_CONNECTIONID uint32 = uint32(15558)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_GROUPID uint32 = uint32(15559)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_STATE uint32 = uint32(15560)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_ACTUAL uint32 = uint32(15561)
+const OpcuaNodeIdServices_PUBSUBTRANSPORTLIMITSEXCEEDEVENTTYPE_MAXIMUM uint32 = uint32(15562)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE uint32 = uint32(15563)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_EVENTID uint32 = uint32(15564)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_EVENTTYPE uint32 = uint32(15565)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_SOURCENODE uint32 = uint32(15566)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_SOURCENAME uint32 = uint32(15567)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_TIME uint32 = uint32(15568)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_RECEIVETIME uint32 = uint32(15569)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_LOCALTIME uint32 = uint32(15570)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_MESSAGE uint32 = uint32(15571)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_SEVERITY uint32 = uint32(15572)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_CONNECTIONID uint32 = uint32(15573)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_GROUPID uint32 = uint32(15574)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_STATE uint32 = uint32(15575)
+const OpcuaNodeIdServices_PUBSUBCOMMUNICATIONFAILUREEVENTTYPE_ERROR uint32 = uint32(15576)
+const OpcuaNodeIdServices_DATASETFIELDFLAGS_OPTIONSETVALUES uint32 = uint32(15577)
+const OpcuaNodeIdServices_PUBLISHEDDATASETDATATYPE uint32 = uint32(15578)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15579)
+const OpcuaNodeIdServices_PUBLISHEDDATASETSOURCEDATATYPE uint32 = uint32(15580)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSDATATYPE uint32 = uint32(15581)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSDATATYPE uint32 = uint32(15582)
+const OpcuaNodeIdServices_DATASETFIELDCONTENTMASK uint32 = uint32(15583)
+const OpcuaNodeIdServices_DATASETFIELDCONTENTMASK_OPTIONSETVALUES uint32 = uint32(15584)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLETYPEDESCRIPTION uint32 = uint32(15585)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLETYPEDESCRIPTION_DATATYPEVERSION uint32 = uint32(15586)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SIMPLETYPEDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15587)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UABINARYFILEDATATYPE uint32 = uint32(15588)
+const OpcuaNodeIdServices_STRUCTUREDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(15589)
+const OpcuaNodeIdServices_ENUMDESCRIPTION_ENCODING_DEFAULTXML uint32 = uint32(15590)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDESCRIPTION uint32 = uint32(15591)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDESCRIPTION_DATATYPEVERSION uint32 = uint32(15592)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15593)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDESCRIPTION uint32 = uint32(15594)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDESCRIPTION_DATATYPEVERSION uint32 = uint32(15595)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15596)
+const OpcuaNodeIdServices_DATASETWRITERDATATYPE uint32 = uint32(15597)
+const OpcuaNodeIdServices_DATASETWRITERTRANSPORTDATATYPE uint32 = uint32(15598)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDESCRIPTION uint32 = uint32(15599)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDESCRIPTION_DATATYPEVERSION uint32 = uint32(15600)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15601)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDESCRIPTION uint32 = uint32(15602)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDESCRIPTION_DATATYPEVERSION uint32 = uint32(15603)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDESCRIPTION_DICTIONARYFRAGMENT uint32 = uint32(15604)
+const OpcuaNodeIdServices_DATASETWRITERMESSAGEDATATYPE uint32 = uint32(15605)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET uint32 = uint32(15606)
+const OpcuaNodeIdServices_ROLESETTYPE uint32 = uint32(15607)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER uint32 = uint32(15608)
+const OpcuaNodeIdServices_PUBSUBGROUPDATATYPE uint32 = uint32(15609)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UABINARYFILEDATATYPE_DATATYPEVERSION uint32 = uint32(15610)
+const OpcuaNodeIdServices_WRITERGROUPTRANSPORTDATATYPE uint32 = uint32(15611)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDIDENTITY uint32 = uint32(15612)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15613)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEIDENTITY uint32 = uint32(15614)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15615)
+const OpcuaNodeIdServices_WRITERGROUPMESSAGEDATATYPE uint32 = uint32(15616)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONDATATYPE uint32 = uint32(15617)
+const OpcuaNodeIdServices_CONNECTIONTRANSPORTDATATYPE uint32 = uint32(15618)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UABINARYFILEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15619)
+const OpcuaNodeIdServices_ROLETYPE uint32 = uint32(15620)
+const OpcuaNodeIdServices_READERGROUPTRANSPORTDATATYPE uint32 = uint32(15621)
+const OpcuaNodeIdServices_READERGROUPMESSAGEDATATYPE uint32 = uint32(15622)
+const OpcuaNodeIdServices_DATASETREADERDATATYPE uint32 = uint32(15623)
+const OpcuaNodeIdServices_ROLETYPE_ADDIDENTITY uint32 = uint32(15624)
+const OpcuaNodeIdServices_ROLETYPE_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15625)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEIDENTITY uint32 = uint32(15626)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15627)
+const OpcuaNodeIdServices_DATASETREADERTRANSPORTDATATYPE uint32 = uint32(15628)
+const OpcuaNodeIdServices_DATASETREADERMESSAGEDATATYPE uint32 = uint32(15629)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETDATATYPE uint32 = uint32(15630)
+const OpcuaNodeIdServices_TARGETVARIABLESDATATYPE uint32 = uint32(15631)
+const OpcuaNodeIdServices_IDENTITYCRITERIATYPE uint32 = uint32(15632)
+const OpcuaNodeIdServices_IDENTITYCRITERIATYPE_ENUMVALUES uint32 = uint32(15633)
+const OpcuaNodeIdServices_IDENTITYMAPPINGRULETYPE uint32 = uint32(15634)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETMIRRORDATATYPE uint32 = uint32(15635)
+const OpcuaNodeIdServices_ADDIDENTITYMETHODTYPE uint32 = uint32(15636)
+const OpcuaNodeIdServices_ADDIDENTITYMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15637)
+const OpcuaNodeIdServices_REMOVEIDENTITYMETHODTYPE uint32 = uint32(15638)
+const OpcuaNodeIdServices_REMOVEIDENTITYMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15639)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE uint32 = uint32(15640)
+const OpcuaNodeIdServices_DATASETORDERINGTYPE_ENUMSTRINGS uint32 = uint32(15641)
+const OpcuaNodeIdServices_UADPNETWORKMESSAGECONTENTMASK uint32 = uint32(15642)
+const OpcuaNodeIdServices_UADPNETWORKMESSAGECONTENTMASK_OPTIONSETVALUES uint32 = uint32(15643)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS uint32 = uint32(15644)
+const OpcuaNodeIdServices_UADPWRITERGROUPMESSAGEDATATYPE uint32 = uint32(15645)
+const OpcuaNodeIdServices_UADPDATASETMESSAGECONTENTMASK uint32 = uint32(15646)
+const OpcuaNodeIdServices_UADPDATASETMESSAGECONTENTMASK_OPTIONSETVALUES uint32 = uint32(15647)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDIDENTITY uint32 = uint32(15648)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15649)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEIDENTITY uint32 = uint32(15650)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15651)
+const OpcuaNodeIdServices_UADPDATASETWRITERMESSAGEDATATYPE uint32 = uint32(15652)
+const OpcuaNodeIdServices_UADPDATASETREADERMESSAGEDATATYPE uint32 = uint32(15653)
+const OpcuaNodeIdServices_JSONNETWORKMESSAGECONTENTMASK uint32 = uint32(15654)
+const OpcuaNodeIdServices_JSONNETWORKMESSAGECONTENTMASK_OPTIONSETVALUES uint32 = uint32(15655)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER uint32 = uint32(15656)
+const OpcuaNodeIdServices_JSONWRITERGROUPMESSAGEDATATYPE uint32 = uint32(15657)
+const OpcuaNodeIdServices_JSONDATASETMESSAGECONTENTMASK uint32 = uint32(15658)
+const OpcuaNodeIdServices_JSONDATASETMESSAGECONTENTMASK_OPTIONSETVALUES uint32 = uint32(15659)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDIDENTITY uint32 = uint32(15660)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15661)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEIDENTITY uint32 = uint32(15662)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15663)
+const OpcuaNodeIdServices_JSONDATASETWRITERMESSAGEDATATYPE uint32 = uint32(15664)
+const OpcuaNodeIdServices_JSONDATASETREADERMESSAGEDATATYPE uint32 = uint32(15665)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15666)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTDATATYPE uint32 = uint32(15667)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER uint32 = uint32(15668)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTDATATYPE uint32 = uint32(15669)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTDATATYPE uint32 = uint32(15670)
+const OpcuaNodeIdServices_ENDPOINTTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15671)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDIDENTITY uint32 = uint32(15672)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15673)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEIDENTITY uint32 = uint32(15674)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15675)
+const OpcuaNodeIdServices_DATATYPESCHEMAHEADER_ENCODING_DEFAULTBINARY uint32 = uint32(15676)
+const OpcuaNodeIdServices_PUBLISHEDDATASETDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15677)
+const OpcuaNodeIdServices_PUBLISHEDDATASETSOURCEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15678)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15679)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR uint32 = uint32(15680)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15681)
+const OpcuaNodeIdServices_DATASETWRITERDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15682)
+const OpcuaNodeIdServices_DATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15683)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDIDENTITY uint32 = uint32(15684)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15685)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEIDENTITY uint32 = uint32(15686)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15687)
+const OpcuaNodeIdServices_DATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15688)
+const OpcuaNodeIdServices_PUBSUBGROUPDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15689)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERCONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15690)
+const OpcuaNodeIdServices_WRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15691)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR uint32 = uint32(15692)
+const OpcuaNodeIdServices_WRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15693)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15694)
+const OpcuaNodeIdServices_CONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15695)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDIDENTITY uint32 = uint32(15696)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15697)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEIDENTITY uint32 = uint32(15698)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15699)
+const OpcuaNodeIdServices_SIMPLETYPEDESCRIPTION_ENCODING_DEFAULTJSON uint32 = uint32(15700)
+const OpcuaNodeIdServices_READERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15701)
+const OpcuaNodeIdServices_READERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15702)
+const OpcuaNodeIdServices_DATASETREADERDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15703)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN uint32 = uint32(15704)
+const OpcuaNodeIdServices_DATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15705)
+const OpcuaNodeIdServices_DATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15706)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15707)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDIDENTITY uint32 = uint32(15708)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15709)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEIDENTITY uint32 = uint32(15710)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15711)
+const OpcuaNodeIdServices_TARGETVARIABLESDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15712)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETMIRRORDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15713)
+const OpcuaNodeIdServices_UABINARYFILEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15714)
+const OpcuaNodeIdServices_UADPWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15715)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN uint32 = uint32(15716)
+const OpcuaNodeIdServices_UADPDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15717)
+const OpcuaNodeIdServices_UADPDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15718)
+const OpcuaNodeIdServices_JSONWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15719)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDIDENTITY uint32 = uint32(15720)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(15721)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEIDENTITY uint32 = uint32(15722)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(15723)
+const OpcuaNodeIdServices_JSONDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15724)
+const OpcuaNodeIdServices_JSONDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15725)
+const OpcuaNodeIdServices_BROKERCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(15726)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15727)
+const OpcuaNodeIdServices_IDENTITYMAPPINGRULETYPE_ENCODING_DEFAULTXML uint32 = uint32(15728)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15729)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_IDENTITYMAPPINGRULETYPE uint32 = uint32(15730)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_IDENTITYMAPPINGRULETYPE_DATATYPEVERSION uint32 = uint32(15731)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_IDENTITYMAPPINGRULETYPE_DICTIONARYFRAGMENT uint32 = uint32(15732)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15733)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTTYPE uint32 = uint32(15734)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTTYPE_DATATYPEVERSION uint32 = uint32(15735)
+const OpcuaNodeIdServices_IDENTITYMAPPINGRULETYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15736)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENDPOINTTYPE_DICTIONARYFRAGMENT uint32 = uint32(15737)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_IDENTITYMAPPINGRULETYPE uint32 = uint32(15738)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_IDENTITYMAPPINGRULETYPE_DATATYPEVERSION uint32 = uint32(15739)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_IDENTITYMAPPINGRULETYPE_DICTIONARYFRAGMENT uint32 = uint32(15740)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPESCHEMAHEADER uint32 = uint32(15741)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPESCHEMAHEADER_DATATYPEVERSION uint32 = uint32(15742)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPESCHEMAHEADER_DICTIONARYFRAGMENT uint32 = uint32(15743)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE uint32 = uint32(15744)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_CLIENTPROCESSINGTIMEOUT uint32 = uint32(15745)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORREAD uint32 = uint32(15746)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORREAD_INPUTARGUMENTS uint32 = uint32(15747)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORREAD_OUTPUTARGUMENTS uint32 = uint32(15748)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORWRITE uint32 = uint32(15749)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORWRITE_OUTPUTARGUMENTS uint32 = uint32(15750)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_CLOSEANDCOMMIT uint32 = uint32(15751)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_CLOSEANDCOMMIT_INPUTARGUMENTS uint32 = uint32(15752)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_CLOSEANDCOMMIT_OUTPUTARGUMENTS uint32 = uint32(15753)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER uint32 = uint32(15754)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_CURRENTSTATE uint32 = uint32(15755)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_CURRENTSTATE_ID uint32 = uint32(15756)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_CURRENTSTATE_NAME uint32 = uint32(15757)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_CURRENTSTATE_NUMBER uint32 = uint32(15758)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(15759)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION uint32 = uint32(15760)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION_ID uint32 = uint32(15761)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION_NAME uint32 = uint32(15762)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION_NUMBER uint32 = uint32(15763)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(15764)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(15765)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETDATATYPE uint32 = uint32(15766)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETDATATYPE_DATATYPEVERSION uint32 = uint32(15767)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15768)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE uint32 = uint32(15769)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE_DATATYPEVERSION uint32 = uint32(15770)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15771)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATAITEMSDATATYPE uint32 = uint32(15772)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATAITEMSDATATYPE_DATATYPEVERSION uint32 = uint32(15773)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDDATAITEMSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15774)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDEVENTSDATATYPE uint32 = uint32(15775)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDEVENTSDATATYPE_DATATYPEVERSION uint32 = uint32(15776)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBLISHEDEVENTSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15777)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERDATATYPE uint32 = uint32(15778)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERDATATYPE_DATATYPEVERSION uint32 = uint32(15779)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15780)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERTRANSPORTDATATYPE uint32 = uint32(15781)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15782)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15783)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERMESSAGEDATATYPE uint32 = uint32(15784)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15785)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15786)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBGROUPDATATYPE uint32 = uint32(15787)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBGROUPDATATYPE_DATATYPEVERSION uint32 = uint32(15788)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBGROUPDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15789)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER uint32 = uint32(15790)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_PUBLISHERID uint32 = uint32(15791)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI uint32 = uint32(15792)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPTRANSPORTDATATYPE uint32 = uint32(15793)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_RESET uint32 = uint32(15794)
+const OpcuaNodeIdServices_GENERATEFILEFORREADMETHODTYPE uint32 = uint32(15795)
+const OpcuaNodeIdServices_GENERATEFILEFORREADMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15796)
+const OpcuaNodeIdServices_GENERATEFILEFORREADMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15797)
+const OpcuaNodeIdServices_GENERATEFILEFORWRITEMETHODTYPE uint32 = uint32(15798)
+const OpcuaNodeIdServices_GENERATEFILEFORWRITEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15799)
+const OpcuaNodeIdServices_CLOSEANDCOMMITMETHODTYPE uint32 = uint32(15800)
+const OpcuaNodeIdServices_CLOSEANDCOMMITMETHODTYPE_INPUTARGUMENTS uint32 = uint32(15801)
+const OpcuaNodeIdServices_CLOSEANDCOMMITMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(15802)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE uint32 = uint32(15803)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_CURRENTSTATE uint32 = uint32(15804)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_CURRENTSTATE_ID uint32 = uint32(15805)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_CURRENTSTATE_NAME uint32 = uint32(15806)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_CURRENTSTATE_NUMBER uint32 = uint32(15807)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(15808)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION uint32 = uint32(15809)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION_ID uint32 = uint32(15810)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION_NAME uint32 = uint32(15811)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION_NUMBER uint32 = uint32(15812)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(15813)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(15814)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLE uint32 = uint32(15815)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLE_STATENUMBER uint32 = uint32(15816)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARE uint32 = uint32(15817)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARE_STATENUMBER uint32 = uint32(15818)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFER uint32 = uint32(15819)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFER_STATENUMBER uint32 = uint32(15820)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITE uint32 = uint32(15821)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITE_STATENUMBER uint32 = uint32(15822)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_ERROR uint32 = uint32(15823)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_ERROR_STATENUMBER uint32 = uint32(15824)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLETOREADPREPARE uint32 = uint32(15825)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLETOREADPREPARE_TRANSITIONNUMBER uint32 = uint32(15826)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARETOREADTRANSFER uint32 = uint32(15827)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARETOREADTRANSFER_TRANSITIONNUMBER uint32 = uint32(15828)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFERTOIDLE uint32 = uint32(15829)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFERTOIDLE_TRANSITIONNUMBER uint32 = uint32(15830)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLETOAPPLYWRITE uint32 = uint32(15831)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_IDLETOAPPLYWRITE_TRANSITIONNUMBER uint32 = uint32(15832)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITETOIDLE uint32 = uint32(15833)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITETOIDLE_TRANSITIONNUMBER uint32 = uint32(15834)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARETOERROR uint32 = uint32(15835)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READPREPARETOERROR_TRANSITIONNUMBER uint32 = uint32(15836)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFERTOERROR uint32 = uint32(15837)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_READTRANSFERTOERROR_TRANSITIONNUMBER uint32 = uint32(15838)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITETOERROR uint32 = uint32(15839)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_APPLYWRITETOERROR_TRANSITIONNUMBER uint32 = uint32(15840)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_ERRORTOIDLE uint32 = uint32(15841)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_ERRORTOIDLE_TRANSITIONNUMBER uint32 = uint32(15842)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_RESET uint32 = uint32(15843)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_STATUS uint32 = uint32(15844)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_STATUS_STATE uint32 = uint32(15845)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_STATUS_ENABLE uint32 = uint32(15846)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_STATUS_DISABLE uint32 = uint32(15847)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_SELECTIONS uint32 = uint32(15848)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_SELECTIONDESCRIPTIONS uint32 = uint32(15849)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_RESTRICTTOLIST uint32 = uint32(15850)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDRESS uint32 = uint32(15851)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15852)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15853)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPMESSAGEDATATYPE uint32 = uint32(15854)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15855)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_WRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15856)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBCONNECTIONDATATYPE uint32 = uint32(15857)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBCONNECTIONDATATYPE_DATATYPEVERSION uint32 = uint32(15858)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_PUBSUBCONNECTIONDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15859)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONNECTIONTRANSPORTDATATYPE uint32 = uint32(15860)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15861)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15862)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE uint32 = uint32(15863)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(15864)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_STATUS uint32 = uint32(15865)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPTRANSPORTDATATYPE uint32 = uint32(15866)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15867)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15868)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPMESSAGEDATATYPE uint32 = uint32(15869)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15870)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_READERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15871)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERDATATYPE uint32 = uint32(15872)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERDATATYPE_DATATYPEVERSION uint32 = uint32(15873)
+const OpcuaNodeIdServices_OVERRIDEVALUEHANDLING uint32 = uint32(15874)
+const OpcuaNodeIdServices_OVERRIDEVALUEHANDLING_ENUMSTRINGS uint32 = uint32(15875)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15876)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERTRANSPORTDATATYPE uint32 = uint32(15877)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15878)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15879)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERMESSAGEDATATYPE uint32 = uint32(15880)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15881)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15882)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETDATATYPE uint32 = uint32(15883)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETDATATYPE_DATATYPEVERSION uint32 = uint32(15884)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15885)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TARGETVARIABLESDATATYPE uint32 = uint32(15886)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TARGETVARIABLESDATATYPE_DATATYPEVERSION uint32 = uint32(15887)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_TARGETVARIABLESDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15888)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE uint32 = uint32(15889)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE_DATATYPEVERSION uint32 = uint32(15890)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15891)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(15892)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(15893)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(15894)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE uint32 = uint32(15895)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15896)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15897)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE uint32 = uint32(15898)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15899)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15900)
+const OpcuaNodeIdServices_SESSIONLESSINVOKEREQUESTTYPE uint32 = uint32(15901)
+const OpcuaNodeIdServices_SESSIONLESSINVOKEREQUESTTYPE_ENCODING_DEFAULTXML uint32 = uint32(15902)
+const OpcuaNodeIdServices_SESSIONLESSINVOKEREQUESTTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(15903)
+const OpcuaNodeIdServices_DATASETFIELDFLAGS uint32 = uint32(15904)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(15905)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE uint32 = uint32(15906)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYKEYS uint32 = uint32(15907)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYKEYS_INPUTARGUMENTS uint32 = uint32(15908)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYKEYS_OUTPUTARGUMENTS uint32 = uint32(15909)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYGROUP uint32 = uint32(15910)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15911)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_GETSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15912)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS uint32 = uint32(15913)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS_ADDSECURITYGROUP uint32 = uint32(15914)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS_ADDSECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15915)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS_ADDSECURITYGROUP_OUTPUTARGUMENTS uint32 = uint32(15916)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS_REMOVESECURITYGROUP uint32 = uint32(15917)
+const OpcuaNodeIdServices_PUBSUBKEYSERVICETYPE_SECURITYGROUPS_REMOVESECURITYGROUP_INPUTARGUMENTS uint32 = uint32(15918)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETREADERMESSAGEDATATYPE uint32 = uint32(15919)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15920)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_UADPDATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15921)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE uint32 = uint32(15922)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15923)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15924)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE uint32 = uint32(15925)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_SECURITYMODE uint32 = uint32(15926)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_SECURITYGROUPID uint32 = uint32(15927)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_SECURITYKEYSERVICES uint32 = uint32(15928)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15929)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15930)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETREADERMESSAGEDATATYPE uint32 = uint32(15931)
+const OpcuaNodeIdServices_DATASETREADERTYPE_SECURITYMODE uint32 = uint32(15932)
+const OpcuaNodeIdServices_DATASETREADERTYPE_SECURITYGROUPID uint32 = uint32(15933)
+const OpcuaNodeIdServices_DATASETREADERTYPE_SECURITYKEYSERVICES uint32 = uint32(15934)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(15935)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_JSONDATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15936)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(15937)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(15938)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(15939)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE uint32 = uint32(15940)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15941)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15942)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE uint32 = uint32(15943)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15944)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15945)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE uint32 = uint32(15946)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(15947)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(15948)
+const OpcuaNodeIdServices_ENDPOINTTYPE_ENCODING_DEFAULTXML uint32 = uint32(15949)
+const OpcuaNodeIdServices_DATATYPESCHEMAHEADER_ENCODING_DEFAULTXML uint32 = uint32(15950)
+const OpcuaNodeIdServices_PUBLISHEDDATASETDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15951)
+const OpcuaNodeIdServices_PUBLISHEDDATASETSOURCEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15952)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15953)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15954)
+const OpcuaNodeIdServices_DATASETWRITERDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15955)
+const OpcuaNodeIdServices_DATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15956)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA uint32 = uint32(15957)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEURI uint32 = uint32(15958)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEVERSION uint32 = uint32(15959)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEPUBLICATIONDATE uint32 = uint32(15960)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_ISNAMESPACESUBSET uint32 = uint32(15961)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_STATICNODEIDTYPES uint32 = uint32(15962)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_STATICNUMERICNODEIDRANGE uint32 = uint32(15963)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_STATICSTRINGNODEIDPATTERN uint32 = uint32(15964)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE uint32 = uint32(15965)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_SIZE uint32 = uint32(15966)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_WRITABLE uint32 = uint32(15967)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_USERWRITABLE uint32 = uint32(15968)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_OPENCOUNT uint32 = uint32(15969)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_MIMETYPE uint32 = uint32(15970)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_OPEN uint32 = uint32(15971)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_OPEN_INPUTARGUMENTS uint32 = uint32(15972)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_OPEN_OUTPUTARGUMENTS uint32 = uint32(15973)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_CLOSE uint32 = uint32(15974)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_CLOSE_INPUTARGUMENTS uint32 = uint32(15975)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_READ uint32 = uint32(15976)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_READ_INPUTARGUMENTS uint32 = uint32(15977)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_READ_OUTPUTARGUMENTS uint32 = uint32(15978)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_WRITE uint32 = uint32(15979)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_WRITE_INPUTARGUMENTS uint32 = uint32(15980)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_GETPOSITION uint32 = uint32(15981)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_GETPOSITION_INPUTARGUMENTS uint32 = uint32(15982)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(15983)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_SETPOSITION uint32 = uint32(15984)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_SETPOSITION_INPUTARGUMENTS uint32 = uint32(15985)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_NAMESPACEFILE_EXPORTNAMESPACE uint32 = uint32(15986)
+const OpcuaNodeIdServices_DATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15987)
+const OpcuaNodeIdServices_PUBSUBGROUPDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15988)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(15989)
+const OpcuaNodeIdServices_WRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15990)
+const OpcuaNodeIdServices_WRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15991)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15992)
+const OpcuaNodeIdServices_CONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15993)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(15994)
+const OpcuaNodeIdServices_READERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15995)
+const OpcuaNodeIdServices_READERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(15996)
+const OpcuaNodeIdServices_ROLESETTYPE_ADDROLE uint32 = uint32(15997)
+const OpcuaNodeIdServices_ROLESETTYPE_ADDROLE_INPUTARGUMENTS uint32 = uint32(15998)
+const OpcuaNodeIdServices_ROLESETTYPE_ADDROLE_OUTPUTARGUMENTS uint32 = uint32(15999)
+const OpcuaNodeIdServices_ROLESETTYPE_REMOVEROLE uint32 = uint32(16000)
+const OpcuaNodeIdServices_ROLESETTYPE_REMOVEROLE_INPUTARGUMENTS uint32 = uint32(16001)
+const OpcuaNodeIdServices_ADDROLEMETHODTYPE uint32 = uint32(16002)
+const OpcuaNodeIdServices_ADDROLEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16003)
+const OpcuaNodeIdServices_ADDROLEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(16004)
+const OpcuaNodeIdServices_REMOVEROLEMETHODTYPE uint32 = uint32(16005)
+const OpcuaNodeIdServices_REMOVEROLEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16006)
+const OpcuaNodeIdServices_DATASETREADERDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16007)
+const OpcuaNodeIdServices_DATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16008)
+const OpcuaNodeIdServices_DATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16009)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16010)
+const OpcuaNodeIdServices_TARGETVARIABLESDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16011)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETMIRRORDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16012)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(16013)
+const OpcuaNodeIdServices_UADPWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16014)
+const OpcuaNodeIdServices_UADPDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16015)
+const OpcuaNodeIdServices_UADPDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16016)
+const OpcuaNodeIdServices_JSONWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16017)
+const OpcuaNodeIdServices_JSONDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16018)
+const OpcuaNodeIdServices_JSONDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16019)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(16020)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16021)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16022)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(16023)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTTYPE uint32 = uint32(16024)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTTYPE_DATATYPEVERSION uint32 = uint32(16025)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENDPOINTTYPE_DICTIONARYFRAGMENT uint32 = uint32(16026)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPESCHEMAHEADER uint32 = uint32(16027)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPESCHEMAHEADER_DATATYPEVERSION uint32 = uint32(16028)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPESCHEMAHEADER_DICTIONARYFRAGMENT uint32 = uint32(16029)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETDATATYPE uint32 = uint32(16030)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETDATATYPE_DATATYPEVERSION uint32 = uint32(16031)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16032)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE uint32 = uint32(16033)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE_DATATYPEVERSION uint32 = uint32(16034)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATASETSOURCEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16035)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER uint32 = uint32(16036)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATAITEMSDATATYPE uint32 = uint32(16037)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATAITEMSDATATYPE_DATATYPEVERSION uint32 = uint32(16038)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDDATAITEMSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16039)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDEVENTSDATATYPE uint32 = uint32(16040)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDIDENTITY uint32 = uint32(16041)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDIDENTITY_INPUTARGUMENTS uint32 = uint32(16042)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEIDENTITY uint32 = uint32(16043)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEIDENTITY_INPUTARGUMENTS uint32 = uint32(16044)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDEVENTSDATATYPE_DATATYPEVERSION uint32 = uint32(16045)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBLISHEDEVENTSDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16046)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERDATATYPE uint32 = uint32(16047)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERDATATYPE_DATATYPEVERSION uint32 = uint32(16048)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16049)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERTRANSPORTDATATYPE uint32 = uint32(16050)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16051)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16052)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERMESSAGEDATATYPE uint32 = uint32(16053)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16054)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16055)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBGROUPDATATYPE uint32 = uint32(16056)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBGROUPDATATYPE_DATATYPEVERSION uint32 = uint32(16057)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBGROUPDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16058)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(16059)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(16060)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(16061)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPTRANSPORTDATATYPE uint32 = uint32(16062)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16063)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16064)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPMESSAGEDATATYPE uint32 = uint32(16065)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16066)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_WRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16067)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBCONNECTIONDATATYPE uint32 = uint32(16068)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBCONNECTIONDATATYPE_DATATYPEVERSION uint32 = uint32(16069)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_PUBSUBCONNECTIONDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16070)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONNECTIONTRANSPORTDATATYPE uint32 = uint32(16071)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16072)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16073)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(16074)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(16075)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(16076)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPTRANSPORTDATATYPE uint32 = uint32(16077)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16078)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16079)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPMESSAGEDATATYPE uint32 = uint32(16080)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16081)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_READERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16082)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERDATATYPE uint32 = uint32(16083)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERDATATYPE_DATATYPEVERSION uint32 = uint32(16084)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16085)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERTRANSPORTDATATYPE uint32 = uint32(16086)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16087)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16088)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERMESSAGEDATATYPE uint32 = uint32(16089)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16090)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16091)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETDATATYPE uint32 = uint32(16092)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETDATATYPE_DATATYPEVERSION uint32 = uint32(16093)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16094)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TARGETVARIABLESDATATYPE uint32 = uint32(16095)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TARGETVARIABLESDATATYPE_DATATYPEVERSION uint32 = uint32(16096)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_TARGETVARIABLESDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16097)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE uint32 = uint32(16098)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE_DATATYPEVERSION uint32 = uint32(16099)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_SUBSCRIBEDDATASETMIRRORDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16100)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(16101)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(16102)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(16103)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE uint32 = uint32(16104)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16105)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPWRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16106)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE uint32 = uint32(16107)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16108)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16109)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETREADERMESSAGEDATATYPE uint32 = uint32(16110)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16111)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_UADPDATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16112)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE uint32 = uint32(16113)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16114)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONWRITERGROUPMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16115)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE uint32 = uint32(16116)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16117)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETWRITERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16118)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETREADERMESSAGEDATATYPE uint32 = uint32(16119)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETREADERMESSAGEDATATYPE_DATATYPEVERSION uint32 = uint32(16120)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_JSONDATASETREADERMESSAGEDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16121)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(16122)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(16123)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(16124)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE uint32 = uint32(16125)
+const OpcuaNodeIdServices_ROLEPERMISSIONTYPE_ENCODING_DEFAULTXML uint32 = uint32(16126)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ROLEPERMISSIONTYPE uint32 = uint32(16127)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ROLEPERMISSIONTYPE_DATATYPEVERSION uint32 = uint32(16128)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ROLEPERMISSIONTYPE_DICTIONARYFRAGMENT uint32 = uint32(16129)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16130)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ROLEPERMISSIONTYPE uint32 = uint32(16131)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ROLEPERMISSIONTYPE_DATATYPEVERSION uint32 = uint32(16132)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ROLEPERMISSIONTYPE_DICTIONARYFRAGMENT uint32 = uint32(16133)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_DEFAULTROLEPERMISSIONS uint32 = uint32(16134)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_DEFAULTUSERROLEPERMISSIONS uint32 = uint32(16135)
+const OpcuaNodeIdServices_OPCUANAMESPACEMETADATA_DEFAULTACCESSRESTRICTIONS uint32 = uint32(16136)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_DEFAULTROLEPERMISSIONS uint32 = uint32(16137)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_DEFAULTUSERROLEPERMISSIONS uint32 = uint32(16138)
+const OpcuaNodeIdServices_NAMESPACEMETADATATYPE_DEFAULTACCESSRESTRICTIONS uint32 = uint32(16139)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_DEFAULTROLEPERMISSIONS uint32 = uint32(16140)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_DEFAULTUSERROLEPERMISSIONS uint32 = uint32(16141)
+const OpcuaNodeIdServices_NAMESPACESTYPE_NAMESPACEIDENTIFIER_PLACEHOLDER_DEFAULTACCESSRESTRICTIONS uint32 = uint32(16142)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERWRITERGROUPTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16143)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE uint32 = uint32(16144)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16145)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETWRITERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16146)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE uint32 = uint32(16147)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(16148)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_BROKERDATASETREADERTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(16149)
+const OpcuaNodeIdServices_ENDPOINTTYPE_ENCODING_DEFAULTJSON uint32 = uint32(16150)
+const OpcuaNodeIdServices_DATATYPESCHEMAHEADER_ENCODING_DEFAULTJSON uint32 = uint32(16151)
+const OpcuaNodeIdServices_PUBLISHEDDATASETDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16152)
+const OpcuaNodeIdServices_PUBLISHEDDATASETSOURCEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16153)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16154)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16155)
+const OpcuaNodeIdServices_DATASETWRITERDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16156)
+const OpcuaNodeIdServices_DATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16157)
+const OpcuaNodeIdServices_DATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16158)
+const OpcuaNodeIdServices_PUBSUBGROUPDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16159)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(16160)
+const OpcuaNodeIdServices_WRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16161)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_IDENTITIES uint32 = uint32(16162)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_APPLICATIONS uint32 = uint32(16163)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ENDPOINTS uint32 = uint32(16164)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDAPPLICATION uint32 = uint32(16165)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16166)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEAPPLICATION uint32 = uint32(16167)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16168)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDENDPOINT uint32 = uint32(16169)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16170)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEENDPOINT uint32 = uint32(16171)
+const OpcuaNodeIdServices_ROLESETTYPE_ROLENAME_PLACEHOLDER_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16172)
+const OpcuaNodeIdServices_ROLETYPE_IDENTITIES uint32 = uint32(16173)
+const OpcuaNodeIdServices_ROLETYPE_APPLICATIONS uint32 = uint32(16174)
+const OpcuaNodeIdServices_ROLETYPE_ENDPOINTS uint32 = uint32(16175)
+const OpcuaNodeIdServices_ROLETYPE_ADDAPPLICATION uint32 = uint32(16176)
+const OpcuaNodeIdServices_ROLETYPE_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16177)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEAPPLICATION uint32 = uint32(16178)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16179)
+const OpcuaNodeIdServices_ROLETYPE_ADDENDPOINT uint32 = uint32(16180)
+const OpcuaNodeIdServices_ROLETYPE_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16181)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEENDPOINT uint32 = uint32(16182)
+const OpcuaNodeIdServices_ROLETYPE_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16183)
+const OpcuaNodeIdServices_ADDAPPLICATIONMETHODTYPE uint32 = uint32(16184)
+const OpcuaNodeIdServices_ADDAPPLICATIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16185)
+const OpcuaNodeIdServices_REMOVEAPPLICATIONMETHODTYPE uint32 = uint32(16186)
+const OpcuaNodeIdServices_REMOVEAPPLICATIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16187)
+const OpcuaNodeIdServices_ADDENDPOINTMETHODTYPE uint32 = uint32(16188)
+const OpcuaNodeIdServices_ADDENDPOINTMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16189)
+const OpcuaNodeIdServices_REMOVEENDPOINTMETHODTYPE uint32 = uint32(16190)
+const OpcuaNodeIdServices_REMOVEENDPOINTMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16191)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_IDENTITIES uint32 = uint32(16192)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_APPLICATIONS uint32 = uint32(16193)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ENDPOINTS uint32 = uint32(16194)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDAPPLICATION uint32 = uint32(16195)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16196)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEAPPLICATION uint32 = uint32(16197)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16198)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDENDPOINT uint32 = uint32(16199)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16200)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEENDPOINT uint32 = uint32(16201)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ANONYMOUS_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16202)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_IDENTITIES uint32 = uint32(16203)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_APPLICATIONS uint32 = uint32(16204)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ENDPOINTS uint32 = uint32(16205)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDAPPLICATION uint32 = uint32(16206)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16207)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEAPPLICATION uint32 = uint32(16208)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16209)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDENDPOINT uint32 = uint32(16210)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16211)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEENDPOINT uint32 = uint32(16212)
+const OpcuaNodeIdServices_WELLKNOWNROLE_AUTHENTICATEDUSER_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16213)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_IDENTITIES uint32 = uint32(16214)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_APPLICATIONS uint32 = uint32(16215)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ENDPOINTS uint32 = uint32(16216)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDAPPLICATION uint32 = uint32(16217)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16218)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEAPPLICATION uint32 = uint32(16219)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16220)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDENDPOINT uint32 = uint32(16221)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16222)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEENDPOINT uint32 = uint32(16223)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OBSERVER_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16224)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_IDENTITIES uint32 = uint32(16225)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_APPLICATIONS uint32 = uint32(16226)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ENDPOINTS uint32 = uint32(16227)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDAPPLICATION uint32 = uint32(16228)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16229)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEAPPLICATION uint32 = uint32(16230)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16231)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDENDPOINT uint32 = uint32(16232)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16233)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEENDPOINT uint32 = uint32(16234)
+const OpcuaNodeIdServices_WELLKNOWNROLE_OPERATOR_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16235)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_IDENTITIES uint32 = uint32(16236)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_APPLICATIONS uint32 = uint32(16237)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ENDPOINTS uint32 = uint32(16238)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDAPPLICATION uint32 = uint32(16239)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16240)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEAPPLICATION uint32 = uint32(16241)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16242)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDENDPOINT uint32 = uint32(16243)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16244)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEENDPOINT uint32 = uint32(16245)
+const OpcuaNodeIdServices_WELLKNOWNROLE_ENGINEER_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16246)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_IDENTITIES uint32 = uint32(16247)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_APPLICATIONS uint32 = uint32(16248)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ENDPOINTS uint32 = uint32(16249)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDAPPLICATION uint32 = uint32(16250)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16251)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEAPPLICATION uint32 = uint32(16252)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16253)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDENDPOINT uint32 = uint32(16254)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16255)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEENDPOINT uint32 = uint32(16256)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SUPERVISOR_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16257)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_IDENTITIES uint32 = uint32(16258)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_APPLICATIONS uint32 = uint32(16259)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ENDPOINTS uint32 = uint32(16260)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDAPPLICATION uint32 = uint32(16261)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16262)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEAPPLICATION uint32 = uint32(16263)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16264)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDENDPOINT uint32 = uint32(16265)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16266)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEENDPOINT uint32 = uint32(16267)
+const OpcuaNodeIdServices_WELLKNOWNROLE_SECURITYADMIN_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16268)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_IDENTITIES uint32 = uint32(16269)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_APPLICATIONS uint32 = uint32(16270)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ENDPOINTS uint32 = uint32(16271)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDAPPLICATION uint32 = uint32(16272)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDAPPLICATION_INPUTARGUMENTS uint32 = uint32(16273)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEAPPLICATION uint32 = uint32(16274)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEAPPLICATION_INPUTARGUMENTS uint32 = uint32(16275)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDENDPOINT uint32 = uint32(16276)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_ADDENDPOINT_INPUTARGUMENTS uint32 = uint32(16277)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEENDPOINT uint32 = uint32(16278)
+const OpcuaNodeIdServices_WELLKNOWNROLE_CONFIGUREADMIN_REMOVEENDPOINT_INPUTARGUMENTS uint32 = uint32(16279)
+const OpcuaNodeIdServices_WRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16280)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16281)
+const OpcuaNodeIdServices_CONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16282)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(16283)
+const OpcuaNodeIdServices_READERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16284)
+const OpcuaNodeIdServices_READERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16285)
+const OpcuaNodeIdServices_DATASETREADERDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16286)
+const OpcuaNodeIdServices_DATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16287)
+const OpcuaNodeIdServices_DATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16288)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET uint32 = uint32(16289)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET_ADDROLE uint32 = uint32(16290)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET_ADDROLE_INPUTARGUMENTS uint32 = uint32(16291)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET_ADDROLE_OUTPUTARGUMENTS uint32 = uint32(16292)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET_REMOVEROLE uint32 = uint32(16293)
+const OpcuaNodeIdServices_SERVERTYPE_SERVERCAPABILITIES_ROLESET_REMOVEROLE_INPUTARGUMENTS uint32 = uint32(16294)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET uint32 = uint32(16295)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET_ADDROLE uint32 = uint32(16296)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET_ADDROLE_INPUTARGUMENTS uint32 = uint32(16297)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET_ADDROLE_OUTPUTARGUMENTS uint32 = uint32(16298)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET_REMOVEROLE uint32 = uint32(16299)
+const OpcuaNodeIdServices_SERVERCAPABILITIESTYPE_ROLESET_REMOVEROLE_INPUTARGUMENTS uint32 = uint32(16300)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET_ADDROLE uint32 = uint32(16301)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET_ADDROLE_INPUTARGUMENTS uint32 = uint32(16302)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET_ADDROLE_OUTPUTARGUMENTS uint32 = uint32(16303)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET_REMOVEROLE uint32 = uint32(16304)
+const OpcuaNodeIdServices_SERVER_SERVERCAPABILITIES_ROLESET_REMOVEROLE_INPUTARGUMENTS uint32 = uint32(16305)
+const OpcuaNodeIdServices_AUDIODATATYPE uint32 = uint32(16307)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16308)
+const OpcuaNodeIdServices_SELECTIONLISTTYPE uint32 = uint32(16309)
+const OpcuaNodeIdServices_TARGETVARIABLESDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16310)
+const OpcuaNodeIdServices_SUBSCRIBEDDATASETMIRRORDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16311)
+const OpcuaNodeIdServices_SELECTIONLISTTYPE_RESTRICTTOLIST uint32 = uint32(16312)
+const OpcuaNodeIdServices_ADDITIONALPARAMETERSTYPE uint32 = uint32(16313)
+const OpcuaNodeIdServices_FILESYSTEM uint32 = uint32(16314)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER uint32 = uint32(16315)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY uint32 = uint32(16316)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY_INPUTARGUMENTS uint32 = uint32(16317)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEDIRECTORY_OUTPUTARGUMENTS uint32 = uint32(16318)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE uint32 = uint32(16319)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE_INPUTARGUMENTS uint32 = uint32(16320)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_CREATEFILE_OUTPUTARGUMENTS uint32 = uint32(16321)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(16322)
+const OpcuaNodeIdServices_UADPWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16323)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY uint32 = uint32(16324)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY_INPUTARGUMENTS uint32 = uint32(16325)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_MOVEORCOPY_OUTPUTARGUMENTS uint32 = uint32(16326)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER uint32 = uint32(16327)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_SIZE uint32 = uint32(16328)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_WRITABLE uint32 = uint32(16329)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_USERWRITABLE uint32 = uint32(16330)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_OPENCOUNT uint32 = uint32(16331)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_MIMETYPE uint32 = uint32(16332)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_OPEN uint32 = uint32(16333)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_OPEN_INPUTARGUMENTS uint32 = uint32(16334)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_OPEN_OUTPUTARGUMENTS uint32 = uint32(16335)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_CLOSE uint32 = uint32(16336)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_CLOSE_INPUTARGUMENTS uint32 = uint32(16337)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_READ uint32 = uint32(16338)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_READ_INPUTARGUMENTS uint32 = uint32(16339)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_READ_OUTPUTARGUMENTS uint32 = uint32(16340)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_WRITE uint32 = uint32(16341)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_WRITE_INPUTARGUMENTS uint32 = uint32(16342)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_GETPOSITION uint32 = uint32(16343)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_GETPOSITION_INPUTARGUMENTS uint32 = uint32(16344)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_GETPOSITION_OUTPUTARGUMENTS uint32 = uint32(16345)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_SETPOSITION uint32 = uint32(16346)
+const OpcuaNodeIdServices_FILESYSTEM_FILENAME_PLACEHOLDER_SETPOSITION_INPUTARGUMENTS uint32 = uint32(16347)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEDIRECTORY uint32 = uint32(16348)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEDIRECTORY_INPUTARGUMENTS uint32 = uint32(16349)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEDIRECTORY_OUTPUTARGUMENTS uint32 = uint32(16350)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEFILE uint32 = uint32(16351)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEFILE_INPUTARGUMENTS uint32 = uint32(16352)
+const OpcuaNodeIdServices_FILESYSTEM_CREATEFILE_OUTPUTARGUMENTS uint32 = uint32(16353)
+const OpcuaNodeIdServices_FILESYSTEM_DELETEFILESYSTEMOBJECT uint32 = uint32(16354)
+const OpcuaNodeIdServices_FILESYSTEM_DELETEFILESYSTEMOBJECT_INPUTARGUMENTS uint32 = uint32(16355)
+const OpcuaNodeIdServices_FILESYSTEM_MOVEORCOPY uint32 = uint32(16356)
+const OpcuaNodeIdServices_FILESYSTEM_MOVEORCOPY_INPUTARGUMENTS uint32 = uint32(16357)
+const OpcuaNodeIdServices_FILESYSTEM_MOVEORCOPY_OUTPUTARGUMENTS uint32 = uint32(16358)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_GENERATEFILEFORWRITE_INPUTARGUMENTS uint32 = uint32(16359)
+const OpcuaNodeIdServices_GENERATEFILEFORWRITEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16360)
+const OpcuaNodeIdServices_HASALARMSUPPRESSIONGROUP uint32 = uint32(16361)
+const OpcuaNodeIdServices_ALARMGROUPMEMBER uint32 = uint32(16362)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONSUBCLASSID uint32 = uint32(16363)
+const OpcuaNodeIdServices_CONDITIONTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16364)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONSUBCLASSID uint32 = uint32(16365)
+const OpcuaNodeIdServices_DIALOGCONDITIONTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16366)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONSUBCLASSID uint32 = uint32(16367)
+const OpcuaNodeIdServices_ACKNOWLEDGEABLECONDITIONTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16368)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONSUBCLASSID uint32 = uint32(16369)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16370)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE uint32 = uint32(16371)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16372)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16373)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16374)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16375)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16376)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16377)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16378)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16379)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE uint32 = uint32(16380)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_ID uint32 = uint32(16381)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_NAME uint32 = uint32(16382)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_NUMBER uint32 = uint32(16383)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16384)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16385)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16386)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16387)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16388)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_AUDIBLEENABLED uint32 = uint32(16389)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_AUDIBLESOUND uint32 = uint32(16390)
+const OpcuaNodeIdServices_UADPDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16391)
+const OpcuaNodeIdServices_UADPDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16392)
+const OpcuaNodeIdServices_JSONWRITERGROUPMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16393)
+const OpcuaNodeIdServices_JSONDATASETWRITERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16394)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ONDELAY uint32 = uint32(16395)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_OFFDELAY uint32 = uint32(16396)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_FIRSTINGROUPFLAG uint32 = uint32(16397)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_FIRSTINGROUP uint32 = uint32(16398)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16399)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_REALARMTIME uint32 = uint32(16400)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_REALARMREPEATCOUNT uint32 = uint32(16401)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SILENCE uint32 = uint32(16402)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SUPPRESS uint32 = uint32(16403)
+const OpcuaNodeIdServices_JSONDATASETREADERMESSAGEDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16404)
+const OpcuaNodeIdServices_ALARMGROUPTYPE uint32 = uint32(16405)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER uint32 = uint32(16406)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_EVENTID uint32 = uint32(16407)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_EVENTTYPE uint32 = uint32(16408)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SOURCENODE uint32 = uint32(16409)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SOURCENAME uint32 = uint32(16410)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_TIME uint32 = uint32(16411)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_RECEIVETIME uint32 = uint32(16412)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LOCALTIME uint32 = uint32(16413)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_MESSAGE uint32 = uint32(16414)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SEVERITY uint32 = uint32(16415)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONDITIONCLASSID uint32 = uint32(16416)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONDITIONCLASSNAME uint32 = uint32(16417)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONDITIONSUBCLASSID uint32 = uint32(16418)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONDITIONSUBCLASSNAME uint32 = uint32(16419)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONDITIONNAME uint32 = uint32(16420)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_BRANCHID uint32 = uint32(16421)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_RETAIN uint32 = uint32(16422)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE uint32 = uint32(16423)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_ID uint32 = uint32(16424)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_NAME uint32 = uint32(16425)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_NUMBER uint32 = uint32(16426)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16427)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(16428)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16429)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_TRUESTATE uint32 = uint32(16430)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLEDSTATE_FALSESTATE uint32 = uint32(16431)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_QUALITY uint32 = uint32(16432)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_QUALITY_SOURCETIMESTAMP uint32 = uint32(16433)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LASTSEVERITY uint32 = uint32(16434)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(16435)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_COMMENT uint32 = uint32(16436)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_COMMENT_SOURCETIMESTAMP uint32 = uint32(16437)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CLIENTUSERID uint32 = uint32(16438)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_DISABLE uint32 = uint32(16439)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ENABLE uint32 = uint32(16440)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ADDCOMMENT uint32 = uint32(16441)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(16442)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE uint32 = uint32(16443)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_ID uint32 = uint32(16444)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_NAME uint32 = uint32(16445)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_NUMBER uint32 = uint32(16446)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16447)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(16448)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16449)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_TRUESTATE uint32 = uint32(16450)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKEDSTATE_FALSESTATE uint32 = uint32(16451)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE uint32 = uint32(16452)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_ID uint32 = uint32(16453)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_NAME uint32 = uint32(16454)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_NUMBER uint32 = uint32(16455)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16456)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(16457)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16458)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(16459)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(16460)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKNOWLEDGE uint32 = uint32(16461)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(16462)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRM uint32 = uint32(16463)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_CONFIRM_INPUTARGUMENTS uint32 = uint32(16464)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE uint32 = uint32(16465)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_ID uint32 = uint32(16466)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_NAME uint32 = uint32(16467)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_NUMBER uint32 = uint32(16468)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16469)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(16470)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16471)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_TRUESTATE uint32 = uint32(16472)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ACTIVESTATE_FALSESTATE uint32 = uint32(16473)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_INPUTNODE uint32 = uint32(16474)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE uint32 = uint32(16475)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_ID uint32 = uint32(16476)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_NAME uint32 = uint32(16477)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_NUMBER uint32 = uint32(16478)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16479)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(16480)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16481)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(16482)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(16483)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE uint32 = uint32(16484)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_ID uint32 = uint32(16485)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_NAME uint32 = uint32(16486)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16487)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16488)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16489)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16490)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16491)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16492)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE uint32 = uint32(16493)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_ID uint32 = uint32(16494)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_NAME uint32 = uint32(16495)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_NUMBER uint32 = uint32(16496)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16497)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16498)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16499)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_TRUESTATE uint32 = uint32(16500)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCESTATE_FALSESTATE uint32 = uint32(16501)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE uint32 = uint32(16502)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(16503)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(16504)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(16505)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(16506)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16507)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(16508)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(16509)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(16510)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(16511)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(16512)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(16513)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(16514)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_UNSHELVE uint32 = uint32(16515)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(16516)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(16517)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(16518)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESSEDORSHELVED uint32 = uint32(16519)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_MAXTIMESHELVED uint32 = uint32(16520)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_AUDIBLEENABLED uint32 = uint32(16521)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_AUDIBLESOUND uint32 = uint32(16522)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(16523)
+const OpcuaNodeIdServices_BROKERWRITERGROUPTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16524)
+const OpcuaNodeIdServices_BROKERDATASETWRITERTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16525)
+const OpcuaNodeIdServices_BROKERDATASETREADERTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(16526)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_ONDELAY uint32 = uint32(16527)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_OFFDELAY uint32 = uint32(16528)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_FIRSTINGROUPFLAG uint32 = uint32(16529)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_FIRSTINGROUP uint32 = uint32(16530)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_REALARMTIME uint32 = uint32(16531)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_REALARMREPEATCOUNT uint32 = uint32(16532)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SILENCE uint32 = uint32(16533)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SUPPRESS uint32 = uint32(16534)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP uint32 = uint32(16535)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16536)
+const OpcuaNodeIdServices_LIMITALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16537)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16538)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16539)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16540)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16541)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16542)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16543)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16544)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16545)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16546)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE uint32 = uint32(16547)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_ID uint32 = uint32(16548)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16549)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16550)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16551)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16552)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16553)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16554)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16555)
+const OpcuaNodeIdServices_LIMITALARMTYPE_AUDIBLEENABLED uint32 = uint32(16556)
+const OpcuaNodeIdServices_LIMITALARMTYPE_AUDIBLESOUND uint32 = uint32(16557)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP_INPUTARGUMENTS uint32 = uint32(16558)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP_OUTPUTARGUMENTS uint32 = uint32(16559)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP uint32 = uint32(16560)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP_INPUTARGUMENTS uint32 = uint32(16561)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ONDELAY uint32 = uint32(16562)
+const OpcuaNodeIdServices_LIMITALARMTYPE_OFFDELAY uint32 = uint32(16563)
+const OpcuaNodeIdServices_LIMITALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16564)
+const OpcuaNodeIdServices_LIMITALARMTYPE_FIRSTINGROUP uint32 = uint32(16565)
+const OpcuaNodeIdServices_LIMITALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16566)
+const OpcuaNodeIdServices_LIMITALARMTYPE_REALARMTIME uint32 = uint32(16567)
+const OpcuaNodeIdServices_LIMITALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16568)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SILENCE uint32 = uint32(16569)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SUPPRESS uint32 = uint32(16570)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP_OUTPUTARGUMENTS uint32 = uint32(16571)
+const OpcuaNodeIdServices_LIMITALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16572)
+const OpcuaNodeIdServices_LIMITALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16573)
+const OpcuaNodeIdServices_LIMITALARMTYPE_BASELOWLIMIT uint32 = uint32(16574)
+const OpcuaNodeIdServices_LIMITALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16575)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16576)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16577)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16578)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16579)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16580)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16581)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16582)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16583)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16584)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16585)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16586)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE uint32 = uint32(16587)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_ID uint32 = uint32(16588)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16589)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16590)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16591)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16592)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16593)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16594)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16595)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_AUDIBLEENABLED uint32 = uint32(16596)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_AUDIBLESOUND uint32 = uint32(16597)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_ADDCONNECTION uint32 = uint32(16598)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_ADDCONNECTION_INPUTARGUMENTS uint32 = uint32(16599)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_ADDCONNECTION_OUTPUTARGUMENTS uint32 = uint32(16600)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE uint32 = uint32(16601)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ONDELAY uint32 = uint32(16602)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_OFFDELAY uint32 = uint32(16603)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16604)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_FIRSTINGROUP uint32 = uint32(16605)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16606)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_REALARMTIME uint32 = uint32(16607)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16608)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SILENCE uint32 = uint32(16609)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SUPPRESS uint32 = uint32(16610)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16611)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16612)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16613)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_BASELOWLIMIT uint32 = uint32(16614)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16615)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16616)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16617)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16618)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16619)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16620)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16621)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16622)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16623)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16624)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16625)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16626)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE uint32 = uint32(16627)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_ID uint32 = uint32(16628)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16629)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16630)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16631)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16632)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16633)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16634)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16635)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_AUDIBLEENABLED uint32 = uint32(16636)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_AUDIBLESOUND uint32 = uint32(16637)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16638)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE uint32 = uint32(16639)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16640)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16641)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ONDELAY uint32 = uint32(16642)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_OFFDELAY uint32 = uint32(16643)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16644)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_FIRSTINGROUP uint32 = uint32(16645)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16646)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_REALARMTIME uint32 = uint32(16647)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16648)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SILENCE uint32 = uint32(16649)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SUPPRESS uint32 = uint32(16650)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDDATASETFOLDER uint32 = uint32(16651)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16652)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16653)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_BASELOWLIMIT uint32 = uint32(16654)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16655)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16656)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16657)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16658)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16659)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16660)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16661)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16662)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16663)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16664)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16665)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16666)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE uint32 = uint32(16667)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_ID uint32 = uint32(16668)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16669)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16670)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16671)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16672)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16673)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16674)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16675)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_AUDIBLEENABLED uint32 = uint32(16676)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_AUDIBLESOUND uint32 = uint32(16677)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(16678)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_ADDDATASETFOLDER_OUTPUTARGUMENTS uint32 = uint32(16679)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_REMOVEDATASETFOLDER uint32 = uint32(16680)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_PUBLISHEDDATASETS_REMOVEDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(16681)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ONDELAY uint32 = uint32(16682)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_OFFDELAY uint32 = uint32(16683)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16684)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_FIRSTINGROUP uint32 = uint32(16685)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16686)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_REALARMTIME uint32 = uint32(16687)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16688)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SILENCE uint32 = uint32(16689)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SUPPRESS uint32 = uint32(16690)
+const OpcuaNodeIdServices_ADDCONNECTIONMETHODTYPE uint32 = uint32(16691)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16692)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16693)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_BASELOWLIMIT uint32 = uint32(16694)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16695)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16696)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16697)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16698)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16699)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16700)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16701)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16702)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16703)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16704)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16705)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16706)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE uint32 = uint32(16707)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_ID uint32 = uint32(16708)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16709)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16710)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16711)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16712)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16713)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16714)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16715)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_AUDIBLEENABLED uint32 = uint32(16716)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_AUDIBLESOUND uint32 = uint32(16717)
+const OpcuaNodeIdServices_ADDCONNECTIONMETHODTYPE_INPUTARGUMENTS uint32 = uint32(16718)
+const OpcuaNodeIdServices_ADDCONNECTIONMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(16719)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERID uint32 = uint32(16720)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETFIELDCONTENTMASK uint32 = uint32(16721)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ONDELAY uint32 = uint32(16722)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_OFFDELAY uint32 = uint32(16723)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16724)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_FIRSTINGROUP uint32 = uint32(16725)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16726)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_REALARMTIME uint32 = uint32(16727)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16728)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SILENCE uint32 = uint32(16729)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SUPPRESS uint32 = uint32(16730)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_KEYFRAMECOUNT uint32 = uint32(16731)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16732)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16733)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_BASELOWLIMIT uint32 = uint32(16734)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16735)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16736)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16737)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16738)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16739)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16740)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16741)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16742)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16743)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16744)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16745)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16746)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE uint32 = uint32(16747)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_ID uint32 = uint32(16748)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16749)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16750)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16751)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16752)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16753)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16754)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16755)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_AUDIBLEENABLED uint32 = uint32(16756)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND uint32 = uint32(16757)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(16758)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETCLASSID uint32 = uint32(16759)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERID uint32 = uint32(16760)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETFIELDCONTENTMASK uint32 = uint32(16761)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ONDELAY uint32 = uint32(16762)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_OFFDELAY uint32 = uint32(16763)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16764)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_FIRSTINGROUP uint32 = uint32(16765)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16766)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_REALARMTIME uint32 = uint32(16767)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16768)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SILENCE uint32 = uint32(16769)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SUPPRESS uint32 = uint32(16770)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_KEYFRAMECOUNT uint32 = uint32(16771)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16772)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16773)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BASELOWLIMIT uint32 = uint32(16774)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16775)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_BASESETPOINTNODE uint32 = uint32(16776)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16777)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16778)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16779)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16780)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16781)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16782)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16783)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16784)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16785)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16786)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16787)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE uint32 = uint32(16788)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_ID uint32 = uint32(16789)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16790)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16791)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16792)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16793)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16794)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16795)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16796)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_AUDIBLEENABLED uint32 = uint32(16797)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND uint32 = uint32(16798)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(16799)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETCLASSID uint32 = uint32(16800)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERID uint32 = uint32(16801)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETFIELDCONTENTMASK uint32 = uint32(16802)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ONDELAY uint32 = uint32(16803)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_OFFDELAY uint32 = uint32(16804)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16805)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_FIRSTINGROUP uint32 = uint32(16806)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16807)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_REALARMTIME uint32 = uint32(16808)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16809)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SILENCE uint32 = uint32(16810)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SUPPRESS uint32 = uint32(16811)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_KEYFRAMECOUNT uint32 = uint32(16812)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16813)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16814)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BASELOWLIMIT uint32 = uint32(16815)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16816)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_BASESETPOINTNODE uint32 = uint32(16817)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16818)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16819)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16820)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16821)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16822)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16823)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16824)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16825)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16826)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16827)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16828)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE uint32 = uint32(16829)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_ID uint32 = uint32(16830)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16831)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16832)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16833)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16834)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16835)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16836)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16837)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLEENABLED uint32 = uint32(16838)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND uint32 = uint32(16839)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(16840)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETCLASSID uint32 = uint32(16841)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMSTEMPLATE uint32 = uint32(16842)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16843)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ONDELAY uint32 = uint32(16844)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_OFFDELAY uint32 = uint32(16845)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16846)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_FIRSTINGROUP uint32 = uint32(16847)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16848)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_REALARMTIME uint32 = uint32(16849)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16850)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SILENCE uint32 = uint32(16851)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESS uint32 = uint32(16852)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDDATAITEMSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16853)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16854)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16855)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_BASELOWLIMIT uint32 = uint32(16856)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16857)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_ENGINEERINGUNITS uint32 = uint32(16858)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16859)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16860)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16861)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16862)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16863)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16864)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16865)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16866)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16867)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16868)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16869)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE uint32 = uint32(16870)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_ID uint32 = uint32(16871)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16872)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16873)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16874)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16875)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16876)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16877)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16878)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLEENABLED uint32 = uint32(16879)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND uint32 = uint32(16880)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTSTEMPLATE uint32 = uint32(16881)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16882)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDPUBLISHEDEVENTSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16883)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDDATASETFOLDER uint32 = uint32(16884)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ONDELAY uint32 = uint32(16885)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_OFFDELAY uint32 = uint32(16886)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16887)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_FIRSTINGROUP uint32 = uint32(16888)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16889)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_REALARMTIME uint32 = uint32(16890)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16891)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SILENCE uint32 = uint32(16892)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SUPPRESS uint32 = uint32(16893)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(16894)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_BASEHIGHHIGHLIMIT uint32 = uint32(16895)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_BASEHIGHLIMIT uint32 = uint32(16896)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_BASELOWLIMIT uint32 = uint32(16897)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_BASELOWLOWLIMIT uint32 = uint32(16898)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_ENGINEERINGUNITS uint32 = uint32(16899)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16900)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16901)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16902)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16903)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16904)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16905)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16906)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16907)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16908)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16909)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16910)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE uint32 = uint32(16911)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_ID uint32 = uint32(16912)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16913)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16914)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16915)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16916)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16917)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16918)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16919)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_AUDIBLEENABLED uint32 = uint32(16920)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_AUDIBLESOUND uint32 = uint32(16921)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_ADDDATASETFOLDER_OUTPUTARGUMENTS uint32 = uint32(16922)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_REMOVEDATASETFOLDER uint32 = uint32(16923)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_DATASETFOLDERNAME_PLACEHOLDER_REMOVEDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(16924)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_PUBLISHEDDATASETNAME_PLACEHOLDER_DATASETCLASSID uint32 = uint32(16925)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ONDELAY uint32 = uint32(16926)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_OFFDELAY uint32 = uint32(16927)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16928)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_FIRSTINGROUP uint32 = uint32(16929)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16930)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_REALARMTIME uint32 = uint32(16931)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16932)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SILENCE uint32 = uint32(16933)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SUPPRESS uint32 = uint32(16934)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMSTEMPLATE uint32 = uint32(16935)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16936)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16937)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16938)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16939)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16940)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16941)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16942)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16943)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16944)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16945)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16946)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE uint32 = uint32(16947)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_ID uint32 = uint32(16948)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16949)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16950)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16951)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16952)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16953)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16954)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16955)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_AUDIBLEENABLED uint32 = uint32(16956)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_AUDIBLESOUND uint32 = uint32(16957)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16958)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDDATAITEMSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16959)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTSTEMPLATE uint32 = uint32(16960)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTSTEMPLATE_INPUTARGUMENTS uint32 = uint32(16961)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ONDELAY uint32 = uint32(16962)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_OFFDELAY uint32 = uint32(16963)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(16964)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_FIRSTINGROUP uint32 = uint32(16965)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(16966)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_REALARMTIME uint32 = uint32(16967)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(16968)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SILENCE uint32 = uint32(16969)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SUPPRESS uint32 = uint32(16970)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDPUBLISHEDEVENTSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(16971)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(16972)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(16973)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(16974)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(16975)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(16976)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(16977)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16978)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(16979)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16980)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(16981)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(16982)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE uint32 = uint32(16983)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_ID uint32 = uint32(16984)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_NAME uint32 = uint32(16985)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(16986)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(16987)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(16988)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(16989)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(16990)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(16991)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_AUDIBLEENABLED uint32 = uint32(16992)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_AUDIBLESOUND uint32 = uint32(16993)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDDATASETFOLDER uint32 = uint32(16994)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(16995)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_ADDDATASETFOLDER_OUTPUTARGUMENTS uint32 = uint32(16996)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_REMOVEDATASETFOLDER uint32 = uint32(16997)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ONDELAY uint32 = uint32(16998)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_OFFDELAY uint32 = uint32(16999)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(17000)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_FIRSTINGROUP uint32 = uint32(17001)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(17002)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_REALARMTIME uint32 = uint32(17003)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(17004)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SILENCE uint32 = uint32(17005)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SUPPRESS uint32 = uint32(17006)
+const OpcuaNodeIdServices_DATASETFOLDERTYPE_REMOVEDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(17007)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(17008)
+const OpcuaNodeIdServices_TRIPALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(17009)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(17010)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(17011)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(17012)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(17013)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17014)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(17015)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17016)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(17017)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(17018)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE uint32 = uint32(17019)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_ID uint32 = uint32(17020)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_NAME uint32 = uint32(17021)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(17022)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17023)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(17024)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17025)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(17026)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(17027)
+const OpcuaNodeIdServices_TRIPALARMTYPE_AUDIBLEENABLED uint32 = uint32(17028)
+const OpcuaNodeIdServices_TRIPALARMTYPE_AUDIBLESOUND uint32 = uint32(17029)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSTEMPLATEMETHODTYPE uint32 = uint32(17030)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSTEMPLATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17031)
+const OpcuaNodeIdServices_ADDPUBLISHEDDATAITEMSTEMPLATEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17032)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSTEMPLATEMETHODTYPE uint32 = uint32(17033)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ONDELAY uint32 = uint32(17034)
+const OpcuaNodeIdServices_TRIPALARMTYPE_OFFDELAY uint32 = uint32(17035)
+const OpcuaNodeIdServices_TRIPALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(17036)
+const OpcuaNodeIdServices_TRIPALARMTYPE_FIRSTINGROUP uint32 = uint32(17037)
+const OpcuaNodeIdServices_TRIPALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(17038)
+const OpcuaNodeIdServices_TRIPALARMTYPE_REALARMTIME uint32 = uint32(17039)
+const OpcuaNodeIdServices_TRIPALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(17040)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SILENCE uint32 = uint32(17041)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SUPPRESS uint32 = uint32(17042)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSTEMPLATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17043)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(17044)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(17045)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(17046)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(17047)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(17048)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(17049)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17050)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(17051)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17052)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(17053)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(17054)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE uint32 = uint32(17055)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_ID uint32 = uint32(17056)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_NAME uint32 = uint32(17057)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(17058)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17059)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(17060)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17061)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(17062)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(17063)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_AUDIBLEENABLED uint32 = uint32(17064)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_AUDIBLESOUND uint32 = uint32(17065)
+const OpcuaNodeIdServices_ADDPUBLISHEDEVENTSTEMPLATEMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17066)
+const OpcuaNodeIdServices_ADDDATASETFOLDERMETHODTYPE uint32 = uint32(17067)
+const OpcuaNodeIdServices_ADDDATASETFOLDERMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17068)
+const OpcuaNodeIdServices_ADDDATASETFOLDERMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17069)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ONDELAY uint32 = uint32(17070)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_OFFDELAY uint32 = uint32(17071)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(17072)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_FIRSTINGROUP uint32 = uint32(17073)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(17074)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_REALARMTIME uint32 = uint32(17075)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(17076)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SILENCE uint32 = uint32(17077)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SUPPRESS uint32 = uint32(17078)
+const OpcuaNodeIdServices_REMOVEDATASETFOLDERMETHODTYPE uint32 = uint32(17079)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE uint32 = uint32(17080)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_EVENTID uint32 = uint32(17081)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_EVENTTYPE uint32 = uint32(17082)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SOURCENODE uint32 = uint32(17083)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SOURCENAME uint32 = uint32(17084)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_TIME uint32 = uint32(17085)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_RECEIVETIME uint32 = uint32(17086)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LOCALTIME uint32 = uint32(17087)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_MESSAGE uint32 = uint32(17088)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SEVERITY uint32 = uint32(17089)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONCLASSID uint32 = uint32(17090)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(17091)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(17092)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(17093)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONNAME uint32 = uint32(17094)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_BRANCHID uint32 = uint32(17095)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_RETAIN uint32 = uint32(17096)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE uint32 = uint32(17097)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(17098)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(17099)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(17100)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17101)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(17102)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17103)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(17104)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(17105)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_QUALITY uint32 = uint32(17106)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(17107)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LASTSEVERITY uint32 = uint32(17108)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(17109)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_COMMENT uint32 = uint32(17110)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(17111)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CLIENTUSERID uint32 = uint32(17112)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_DISABLE uint32 = uint32(17113)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ENABLE uint32 = uint32(17114)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ADDCOMMENT uint32 = uint32(17115)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(17116)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONREFRESH uint32 = uint32(17117)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(17118)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(17119)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(17120)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE uint32 = uint32(17121)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_ID uint32 = uint32(17122)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(17123)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(17124)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17125)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(17126)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17127)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(17128)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(17129)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE uint32 = uint32(17130)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(17131)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(17132)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(17133)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17134)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(17135)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17136)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(17137)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(17138)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKNOWLEDGE uint32 = uint32(17139)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(17140)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRM uint32 = uint32(17141)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(17142)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE uint32 = uint32(17143)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_ID uint32 = uint32(17144)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(17145)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(17146)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17147)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(17148)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17149)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(17150)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(17151)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_INPUTNODE uint32 = uint32(17152)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(17153)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(17154)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(17155)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(17156)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17157)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(17158)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17159)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(17160)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(17161)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(17162)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(17163)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(17164)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(17165)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17166)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(17167)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17168)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(17169)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(17170)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE uint32 = uint32(17171)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_ID uint32 = uint32(17172)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_NAME uint32 = uint32(17173)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(17174)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17175)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(17176)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(17177)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(17178)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(17179)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE uint32 = uint32(17180)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(17181)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(17182)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(17183)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(17184)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(17185)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(17186)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(17187)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(17188)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(17189)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(17190)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(17191)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(17192)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(17193)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(17194)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(17195)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(17196)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(17197)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_MAXTIMESHELVED uint32 = uint32(17198)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_AUDIBLEENABLED uint32 = uint32(17199)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_AUDIBLESOUND uint32 = uint32(17200)
+const OpcuaNodeIdServices_REMOVEDATASETFOLDERMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17201)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDRESS_NETWORKINTERFACE uint32 = uint32(17202)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_TRANSPORTSETTINGS uint32 = uint32(17203)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_MAXNETWORKMESSAGESIZE uint32 = uint32(17204)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ONDELAY uint32 = uint32(17205)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_OFFDELAY uint32 = uint32(17206)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(17207)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_FIRSTINGROUP uint32 = uint32(17208)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(17209)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_REALARMTIME uint32 = uint32(17210)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(17211)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SILENCE uint32 = uint32(17212)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SUPPRESS uint32 = uint32(17213)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_WRITERGROUPID uint32 = uint32(17214)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_TARGETVALUENODE uint32 = uint32(17215)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_EXPECTEDTIME uint32 = uint32(17216)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_TOLERANCE uint32 = uint32(17217)
+const OpcuaNodeIdServices_SAFETYCONDITIONCLASSTYPE uint32 = uint32(17218)
+const OpcuaNodeIdServices_HIGHLYMANAGEDALARMCONDITIONCLASSTYPE uint32 = uint32(17219)
+const OpcuaNodeIdServices_TRAININGCONDITIONCLASSTYPE uint32 = uint32(17220)
+const OpcuaNodeIdServices_TESTINGCONDITIONCLASSTYPE uint32 = uint32(17221)
+const OpcuaNodeIdServices_AUDITCONDITIONCOMMENTEVENTTYPE_CONDITIONEVENTID uint32 = uint32(17222)
+const OpcuaNodeIdServices_AUDITCONDITIONACKNOWLEDGEEVENTTYPE_CONDITIONEVENTID uint32 = uint32(17223)
+const OpcuaNodeIdServices_AUDITCONDITIONCONFIRMEVENTTYPE_CONDITIONEVENTID uint32 = uint32(17224)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE uint32 = uint32(17225)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_EVENTID uint32 = uint32(17226)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_EVENTTYPE uint32 = uint32(17227)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_SOURCENODE uint32 = uint32(17228)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_SOURCENAME uint32 = uint32(17229)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_TIME uint32 = uint32(17230)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_RECEIVETIME uint32 = uint32(17231)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_LOCALTIME uint32 = uint32(17232)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_MESSAGE uint32 = uint32(17233)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_SEVERITY uint32 = uint32(17234)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(17235)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_STATUS uint32 = uint32(17236)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_SERVERID uint32 = uint32(17237)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(17238)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_CLIENTUSERID uint32 = uint32(17239)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_METHODID uint32 = uint32(17240)
+const OpcuaNodeIdServices_AUDITCONDITIONSUPPRESSIONEVENTTYPE_INPUTARGUMENTS uint32 = uint32(17241)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE uint32 = uint32(17242)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_EVENTID uint32 = uint32(17243)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_EVENTTYPE uint32 = uint32(17244)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_SOURCENODE uint32 = uint32(17245)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_SOURCENAME uint32 = uint32(17246)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_TIME uint32 = uint32(17247)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_RECEIVETIME uint32 = uint32(17248)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_LOCALTIME uint32 = uint32(17249)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_MESSAGE uint32 = uint32(17250)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_SEVERITY uint32 = uint32(17251)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(17252)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_STATUS uint32 = uint32(17253)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_SERVERID uint32 = uint32(17254)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(17255)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_CLIENTUSERID uint32 = uint32(17256)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_METHODID uint32 = uint32(17257)
+const OpcuaNodeIdServices_AUDITCONDITIONSILENCEEVENTTYPE_INPUTARGUMENTS uint32 = uint32(17258)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE uint32 = uint32(17259)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_EVENTID uint32 = uint32(17260)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_EVENTTYPE uint32 = uint32(17261)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_SOURCENODE uint32 = uint32(17262)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_SOURCENAME uint32 = uint32(17263)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_TIME uint32 = uint32(17264)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_RECEIVETIME uint32 = uint32(17265)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_LOCALTIME uint32 = uint32(17266)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_MESSAGE uint32 = uint32(17267)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_SEVERITY uint32 = uint32(17268)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(17269)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_STATUS uint32 = uint32(17270)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_SERVERID uint32 = uint32(17271)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(17272)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_CLIENTUSERID uint32 = uint32(17273)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_METHODID uint32 = uint32(17274)
+const OpcuaNodeIdServices_AUDITCONDITIONOUTOFSERVICEEVENTTYPE_INPUTARGUMENTS uint32 = uint32(17275)
+const OpcuaNodeIdServices_HASEFFECTDISABLE uint32 = uint32(17276)
+const OpcuaNodeIdServices_ALARMRATEVARIABLETYPE uint32 = uint32(17277)
+const OpcuaNodeIdServices_ALARMRATEVARIABLETYPE_RATE uint32 = uint32(17278)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE uint32 = uint32(17279)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_ALARMCOUNT uint32 = uint32(17280)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_MAXIMUMACTIVESTATE uint32 = uint32(17281)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_MAXIMUMUNACK uint32 = uint32(17282)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_MAXIMUMREALARMCOUNT uint32 = uint32(17283)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_CURRENTALARMRATE uint32 = uint32(17284)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_CURRENTALARMRATE_RATE uint32 = uint32(17285)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_MAXIMUMALARMRATE uint32 = uint32(17286)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_MAXIMUMALARMRATE_RATE uint32 = uint32(17287)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_AVERAGEALARMRATE uint32 = uint32(17288)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_AVERAGEALARMRATE_RATE uint32 = uint32(17289)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(17290)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(17291)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI uint32 = uint32(17292)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_ADDDATASETWRITER uint32 = uint32(17293)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_ADDDATASETWRITER_INPUTARGUMENTS uint32 = uint32(17294)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_RESTRICTTOLIST uint32 = uint32(17295)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SETSECURITYKEYS uint32 = uint32(17296)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SETSECURITYKEYS_INPUTARGUMENTS uint32 = uint32(17297)
+const OpcuaNodeIdServices_SETSECURITYKEYSMETHODTYPE uint32 = uint32(17298)
+const OpcuaNodeIdServices_SETSECURITYKEYSMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17299)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17300)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_ADDDATASETWRITER_OUTPUTARGUMENTS uint32 = uint32(17301)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_MAXNETWORKMESSAGESIZE uint32 = uint32(17302)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17303)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(17304)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(17305)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_TRANSPORTPROFILEURI uint32 = uint32(17306)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(17307)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(17308)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_TRANSPORTPROFILEURI_RESTRICTTOLIST uint32 = uint32(17309)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER uint32 = uint32(17310)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_SECURITYMODE uint32 = uint32(17311)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_SECURITYGROUPID uint32 = uint32(17312)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_SECURITYKEYSERVICES uint32 = uint32(17313)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_STATUS uint32 = uint32(17314)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(17315)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(17316)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(17317)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_PUBLISHINGINTERVAL uint32 = uint32(17318)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_KEEPALIVETIME uint32 = uint32(17319)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(17320)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_PRIORITY uint32 = uint32(17321)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_LOCALEIDS uint32 = uint32(17322)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_REMOVEDATASETWRITER uint32 = uint32(17323)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_REMOVEDATASETWRITER_INPUTARGUMENTS uint32 = uint32(17324)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER uint32 = uint32(17325)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_SECURITYMODE uint32 = uint32(17326)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_SECURITYGROUPID uint32 = uint32(17327)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_SECURITYKEYSERVICES uint32 = uint32(17328)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_STATUS uint32 = uint32(17329)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(17330)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(17331)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(17332)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_REMOVEDATASETREADER uint32 = uint32(17333)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_REMOVEDATASETREADER_INPUTARGUMENTS uint32 = uint32(17334)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17335)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17336)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(17337)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(17338)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(17339)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(17340)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(17341)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(17342)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(17343)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(17344)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17345)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17346)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(17347)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(17348)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(17349)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17350)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17351)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(17352)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_RESOLVEDADDRESS uint32 = uint32(17353)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_RESOLVEDADDRESS_DIAGNOSTICSLEVEL uint32 = uint32(17354)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_ADDDATASETREADER uint32 = uint32(17355)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP uint32 = uint32(17356)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP_INPUTARGUMENTS uint32 = uint32(17357)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDWRITERGROUP_OUTPUTARGUMENTS uint32 = uint32(17358)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP uint32 = uint32(17359)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP_INPUTARGUMENTS uint32 = uint32(17360)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDREADERGROUP_OUTPUTARGUMENTS uint32 = uint32(17361)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_REMOVEGROUP uint32 = uint32(17362)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_REMOVEGROUP_INPUTARGUMENTS uint32 = uint32(17363)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SETSECURITYKEYS uint32 = uint32(17364)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SETSECURITYKEYS_INPUTARGUMENTS uint32 = uint32(17365)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_ADDCONNECTION uint32 = uint32(17366)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_ADDCONNECTION_INPUTARGUMENTS uint32 = uint32(17367)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_ADDCONNECTION_OUTPUTARGUMENTS uint32 = uint32(17368)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_REMOVECONNECTION uint32 = uint32(17369)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_REMOVECONNECTION_INPUTARGUMENTS uint32 = uint32(17370)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS uint32 = uint32(17371)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS uint32 = uint32(17372)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS_INPUTARGUMENTS uint32 = uint32(17373)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMS_OUTPUTARGUMENTS uint32 = uint32(17374)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS uint32 = uint32(17375)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS_INPUTARGUMENTS uint32 = uint32(17376)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTS_OUTPUTARGUMENTS uint32 = uint32(17377)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE uint32 = uint32(17378)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE_INPUTARGUMENTS uint32 = uint32(17379)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDDATAITEMSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(17380)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE uint32 = uint32(17381)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE_INPUTARGUMENTS uint32 = uint32(17382)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDPUBLISHEDEVENTSTEMPLATE_OUTPUTARGUMENTS uint32 = uint32(17383)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_REMOVEPUBLISHEDDATASET uint32 = uint32(17384)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_REMOVEPUBLISHEDDATASET_INPUTARGUMENTS uint32 = uint32(17385)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATETARGETVARIABLES uint32 = uint32(17386)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATETARGETVARIABLES_INPUTARGUMENTS uint32 = uint32(17387)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATETARGETVARIABLES_OUTPUTARGUMENTS uint32 = uint32(17388)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATEDATASETMIRROR uint32 = uint32(17389)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATEDATASETMIRROR_INPUTARGUMENTS uint32 = uint32(17390)
+const OpcuaNodeIdServices_DATASETREADERTYPE_CREATEDATASETMIRROR_OUTPUTARGUMENTS uint32 = uint32(17391)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATETARGETVARIABLESMETHODTYPE uint32 = uint32(17392)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATETARGETVARIABLESMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17393)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATETARGETVARIABLESMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17394)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATEDATASETMIRRORMETHODTYPE uint32 = uint32(17395)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATEDATASETMIRRORMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17396)
+const OpcuaNodeIdServices_DATASETREADERTYPECREATEDATASETMIRRORMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17397)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDDATASETFOLDER uint32 = uint32(17398)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_ADDDATASETREADER_INPUTARGUMENTS uint32 = uint32(17399)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_ADDDATASETREADER_OUTPUTARGUMENTS uint32 = uint32(17400)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(17401)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_ADDDATASETFOLDER_OUTPUTARGUMENTS uint32 = uint32(17402)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_REMOVEDATASETFOLDER uint32 = uint32(17403)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_PUBLISHEDDATASETS_REMOVEDATASETFOLDER_INPUTARGUMENTS uint32 = uint32(17404)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_STATUS uint32 = uint32(17405)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_STATUS_STATE uint32 = uint32(17406)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_STATUS_ENABLE uint32 = uint32(17407)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_STATUS_DISABLE uint32 = uint32(17408)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS uint32 = uint32(17409)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(17410)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(17411)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(17412)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(17413)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(17414)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(17415)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALERROR uint32 = uint32(17416)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(17417)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(17418)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(17419)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(17420)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_RESET uint32 = uint32(17421)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_SUBERROR uint32 = uint32(17422)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS uint32 = uint32(17423)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(17424)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(17425)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(17426)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDWRITERGROUP uint32 = uint32(17427)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDWRITERGROUP_INPUTARGUMENTS uint32 = uint32(17428)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(17429)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(17430)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(17431)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(17432)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(17433)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17434)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17435)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(17436)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(17437)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(17438)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17439)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17440)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(17441)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(17442)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(17443)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(17444)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(17445)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(17446)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(17447)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(17448)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17449)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17450)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(17451)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(17452)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(17453)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17454)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17455)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDWRITERGROUP_OUTPUTARGUMENTS uint32 = uint32(17456)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES uint32 = uint32(17457)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS uint32 = uint32(17458)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(17459)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETREADERS uint32 = uint32(17460)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETREADERS_DIAGNOSTICSLEVEL uint32 = uint32(17461)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS uint32 = uint32(17462)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(17463)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETREADERS uint32 = uint32(17464)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDREADERGROUP uint32 = uint32(17465)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETREADERS_DIAGNOSTICSLEVEL uint32 = uint32(17466)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTDATATYPE uint32 = uint32(17467)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(17468)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE uint32 = uint32(17469)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(17470)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(17471)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(17472)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE uint32 = uint32(17473)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE_DATATYPEVERSION uint32 = uint32(17474)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATAGRAMCONNECTIONTRANSPORTDATATYPE_DICTIONARYFRAGMENT uint32 = uint32(17475)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTDATATYPE_ENCODING_DEFAULTJSON uint32 = uint32(17476)
+const OpcuaNodeIdServices_UADPDATASETREADERMESSAGETYPE_DATASETOFFSET uint32 = uint32(17477)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_CONNECTIONPROPERTIES uint32 = uint32(17478)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_SUPPORTEDTRANSPORTPROFILES uint32 = uint32(17479)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_CONNECTIONPROPERTIES uint32 = uint32(17480)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_SUPPORTEDTRANSPORTPROFILES uint32 = uint32(17481)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERPROPERTIES uint32 = uint32(17482)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERPROPERTIES uint32 = uint32(17483)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERPROPERTIES uint32 = uint32(17484)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_CONNECTIONPROPERTIES uint32 = uint32(17485)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_GROUPPROPERTIES uint32 = uint32(17486)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_READERGROUPNAME_PLACEHOLDER_GROUPPROPERTIES uint32 = uint32(17487)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_GROUPPROPERTIES uint32 = uint32(17488)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_GROUPPROPERTIES uint32 = uint32(17489)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERPROPERTIES uint32 = uint32(17490)
+const OpcuaNodeIdServices_READERGROUPTYPE_GROUPPROPERTIES uint32 = uint32(17491)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DATASETREADERPROPERTIES uint32 = uint32(17492)
+const OpcuaNodeIdServices_DATASETWRITERTYPE_DATASETWRITERPROPERTIES uint32 = uint32(17493)
+const OpcuaNodeIdServices_DATASETREADERTYPE_DATASETREADERPROPERTIES uint32 = uint32(17494)
+const OpcuaNodeIdServices_CREATECREDENTIALMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17495)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE uint32 = uint32(17496)
+const OpcuaNodeIdServices_ANALOGUNITTYPE uint32 = uint32(17497)
+const OpcuaNodeIdServices_ANALOGUNITTYPE_DEFINITION uint32 = uint32(17498)
+const OpcuaNodeIdServices_ANALOGUNITTYPE_VALUEPRECISION uint32 = uint32(17499)
+const OpcuaNodeIdServices_ANALOGUNITTYPE_INSTRUMENTRANGE uint32 = uint32(17500)
+const OpcuaNodeIdServices_ANALOGUNITTYPE_EURANGE uint32 = uint32(17501)
+const OpcuaNodeIdServices_ANALOGUNITTYPE_ENGINEERINGUNITS uint32 = uint32(17502)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17503)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17504)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17505)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17506)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDREADERGROUP_INPUTARGUMENTS uint32 = uint32(17507)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDREADERGROUP_OUTPUTARGUMENTS uint32 = uint32(17508)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17509)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBE_CONNECTIONNAME_PLACEHOLDER_ADDRESS_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17510)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER uint32 = uint32(17511)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_RESOURCEURI uint32 = uint32(17512)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_PROFILEURI uint32 = uint32(17513)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_ENDPOINTURLS uint32 = uint32(17514)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_SERVICESTATUS uint32 = uint32(17515)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY uint32 = uint32(17516)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY_INPUTARGUMENTS uint32 = uint32(17517)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY_OUTPUTARGUMENTS uint32 = uint32(17518)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_UPDATECREDENTIAL uint32 = uint32(17519)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_UPDATECREDENTIAL_INPUTARGUMENTS uint32 = uint32(17520)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_SERVICENAME_PLACEHOLDER_DELETECREDENTIAL uint32 = uint32(17521)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_CREATECREDENTIAL uint32 = uint32(17522)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_CREATECREDENTIAL_INPUTARGUMENTS uint32 = uint32(17523)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONFOLDERTYPE_CREATECREDENTIAL_OUTPUTARGUMENTS uint32 = uint32(17524)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY uint32 = uint32(17525)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY_INPUTARGUMENTS uint32 = uint32(17526)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_GETENCRYPTINGKEY_OUTPUTARGUMENTS uint32 = uint32(17527)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_CREATECREDENTIAL uint32 = uint32(17528)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_CREATECREDENTIAL_INPUTARGUMENTS uint32 = uint32(17529)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_CREATECREDENTIAL_OUTPUTARGUMENTS uint32 = uint32(17530)
+const OpcuaNodeIdServices_GETENCRYPTINGKEYMETHODTYPE uint32 = uint32(17531)
+const OpcuaNodeIdServices_GETENCRYPTINGKEYMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17532)
+const OpcuaNodeIdServices_GETENCRYPTINGKEYMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17533)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_GETENCRYPTINGKEY uint32 = uint32(17534)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_GETENCRYPTINGKEY_INPUTARGUMENTS uint32 = uint32(17535)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_GETENCRYPTINGKEY_OUTPUTARGUMENTS uint32 = uint32(17536)
+const OpcuaNodeIdServices_ADDITIONALPARAMETERSTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(17537)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDITIONALPARAMETERSTYPE uint32 = uint32(17538)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDITIONALPARAMETERSTYPE_DATATYPEVERSION uint32 = uint32(17539)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ADDITIONALPARAMETERSTYPE_DICTIONARYFRAGMENT uint32 = uint32(17540)
+const OpcuaNodeIdServices_ADDITIONALPARAMETERSTYPE_ENCODING_DEFAULTXML uint32 = uint32(17541)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDITIONALPARAMETERSTYPE uint32 = uint32(17542)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDITIONALPARAMETERSTYPE_DATATYPEVERSION uint32 = uint32(17543)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ADDITIONALPARAMETERSTYPE_DICTIONARYFRAGMENT uint32 = uint32(17544)
+const OpcuaNodeIdServices_RSAENCRYPTEDSECRET uint32 = uint32(17545)
+const OpcuaNodeIdServices_ECCENCRYPTEDSECRET uint32 = uint32(17546)
+const OpcuaNodeIdServices_ADDITIONALPARAMETERSTYPE_ENCODING_DEFAULTJSON uint32 = uint32(17547)
+const OpcuaNodeIdServices_EPHEMERALKEYTYPE uint32 = uint32(17548)
+const OpcuaNodeIdServices_EPHEMERALKEYTYPE_ENCODING_DEFAULTBINARY uint32 = uint32(17549)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EPHEMERALKEYTYPE uint32 = uint32(17550)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EPHEMERALKEYTYPE_DATATYPEVERSION uint32 = uint32(17551)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_EPHEMERALKEYTYPE_DICTIONARYFRAGMENT uint32 = uint32(17552)
+const OpcuaNodeIdServices_EPHEMERALKEYTYPE_ENCODING_DEFAULTXML uint32 = uint32(17553)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EPHEMERALKEYTYPE uint32 = uint32(17554)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EPHEMERALKEYTYPE_DATATYPEVERSION uint32 = uint32(17555)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_EPHEMERALKEYTYPE_DICTIONARYFRAGMENT uint32 = uint32(17556)
+const OpcuaNodeIdServices_EPHEMERALKEYTYPE_ENCODING_DEFAULTJSON uint32 = uint32(17557)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_HEADERLAYOUTURI uint32 = uint32(17558)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_HEADERLAYOUTURI uint32 = uint32(17559)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_KEYFRAMECOUNT uint32 = uint32(17560)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPEADDWRITERGROUPMETHODTYPE uint32 = uint32(17561)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_HEADERLAYOUTURI uint32 = uint32(17562)
+const OpcuaNodeIdServices_DATASETREADERTYPE_KEYFRAMECOUNT uint32 = uint32(17563)
+const OpcuaNodeIdServices_DATASETREADERTYPE_HEADERLAYOUTURI uint32 = uint32(17564)
+const OpcuaNodeIdServices_BASEANALOGTYPE_DEFINITION uint32 = uint32(17565)
+const OpcuaNodeIdServices_BASEANALOGTYPE_VALUEPRECISION uint32 = uint32(17566)
+const OpcuaNodeIdServices_BASEANALOGTYPE_INSTRUMENTRANGE uint32 = uint32(17567)
+const OpcuaNodeIdServices_BASEANALOGTYPE_EURANGE uint32 = uint32(17568)
+const OpcuaNodeIdServices_BASEANALOGTYPE_ENGINEERINGUNITS uint32 = uint32(17569)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE uint32 = uint32(17570)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE_DEFINITION uint32 = uint32(17571)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE_VALUEPRECISION uint32 = uint32(17572)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE_INSTRUMENTRANGE uint32 = uint32(17573)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE_EURANGE uint32 = uint32(17574)
+const OpcuaNodeIdServices_ANALOGUNITRANGETYPE_ENGINEERINGUNITS uint32 = uint32(17575)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDRESS_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17576)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDRESS_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17577)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_ADDRESS_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17578)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE_DISCOVERYADDRESS_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17579)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE_DISCOVERYADDRESS_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17580)
+const OpcuaNodeIdServices_DATAGRAMCONNECTIONTRANSPORTTYPE_DISCOVERYADDRESS_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17581)
+const OpcuaNodeIdServices_NETWORKADDRESSTYPE_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17582)
+const OpcuaNodeIdServices_NETWORKADDRESSTYPE_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17583)
+const OpcuaNodeIdServices_NETWORKADDRESSTYPE_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17584)
+const OpcuaNodeIdServices_NETWORKADDRESSURLTYPE_NETWORKINTERFACE_SELECTIONS uint32 = uint32(17585)
+const OpcuaNodeIdServices_NETWORKADDRESSURLTYPE_NETWORKINTERFACE_SELECTIONDESCRIPTIONS uint32 = uint32(17586)
+const OpcuaNodeIdServices_NETWORKADDRESSURLTYPE_NETWORKINTERFACE_RESTRICTTOLIST uint32 = uint32(17587)
+const OpcuaNodeIdServices_INDEX uint32 = uint32(17588)
+const OpcuaNodeIdServices_DICTIONARYENTRYTYPE uint32 = uint32(17589)
+const OpcuaNodeIdServices_DICTIONARYENTRYTYPE_DICTIONARYENTRYNAME_PLACEHOLDER uint32 = uint32(17590)
+const OpcuaNodeIdServices_DICTIONARYFOLDERTYPE uint32 = uint32(17591)
+const OpcuaNodeIdServices_DICTIONARYFOLDERTYPE_DICTIONARYFOLDERNAME_PLACEHOLDER uint32 = uint32(17592)
+const OpcuaNodeIdServices_DICTIONARYFOLDERTYPE_DICTIONARYENTRYNAME_PLACEHOLDER uint32 = uint32(17593)
+const OpcuaNodeIdServices_DICTIONARIES uint32 = uint32(17594)
+const OpcuaNodeIdServices_DICTIONARIES_DICTIONARYFOLDERNAME_PLACEHOLDER uint32 = uint32(17595)
+const OpcuaNodeIdServices_DICTIONARIES_DICTIONARYENTRYNAME_PLACEHOLDER uint32 = uint32(17596)
+const OpcuaNodeIdServices_HASDICTIONARYENTRY uint32 = uint32(17597)
+const OpcuaNodeIdServices_IRDIDICTIONARYENTRYTYPE uint32 = uint32(17598)
+const OpcuaNodeIdServices_IRDIDICTIONARYENTRYTYPE_DICTIONARYENTRYNAME_PLACEHOLDER uint32 = uint32(17599)
+const OpcuaNodeIdServices_URIDICTIONARYENTRYTYPE uint32 = uint32(17600)
+const OpcuaNodeIdServices_URIDICTIONARYENTRYTYPE_DICTIONARYENTRYNAME_PLACEHOLDER uint32 = uint32(17601)
+const OpcuaNodeIdServices_BASEINTERFACETYPE uint32 = uint32(17602)
+const OpcuaNodeIdServices_HASINTERFACE uint32 = uint32(17603)
+const OpcuaNodeIdServices_HASADDIN uint32 = uint32(17604)
+const OpcuaNodeIdServices_DEFAULTINSTANCEBROWSENAME uint32 = uint32(17605)
+const OpcuaNodeIdServices_GENERICATTRIBUTEVALUE uint32 = uint32(17606)
+const OpcuaNodeIdServices_GENERICATTRIBUTES uint32 = uint32(17607)
+const OpcuaNodeIdServices_GENERICATTRIBUTEVALUE_ENCODING_DEFAULTXML uint32 = uint32(17608)
+const OpcuaNodeIdServices_GENERICATTRIBUTES_ENCODING_DEFAULTXML uint32 = uint32(17609)
+const OpcuaNodeIdServices_GENERICATTRIBUTEVALUE_ENCODING_DEFAULTBINARY uint32 = uint32(17610)
+const OpcuaNodeIdServices_GENERICATTRIBUTES_ENCODING_DEFAULTBINARY uint32 = uint32(17611)
+const OpcuaNodeIdServices_SERVERTYPE_LOCALTIME uint32 = uint32(17612)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPEADDWRITERGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17613)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPEADDWRITERGROUPMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17614)
+const OpcuaNodeIdServices_AUDITSECURITYEVENTTYPE_STATUSCODEID uint32 = uint32(17615)
+const OpcuaNodeIdServices_AUDITCHANNELEVENTTYPE_STATUSCODEID uint32 = uint32(17616)
+const OpcuaNodeIdServices_AUDITOPENSECURECHANNELEVENTTYPE_STATUSCODEID uint32 = uint32(17617)
+const OpcuaNodeIdServices_AUDITSESSIONEVENTTYPE_STATUSCODEID uint32 = uint32(17618)
+const OpcuaNodeIdServices_AUDITCREATESESSIONEVENTTYPE_STATUSCODEID uint32 = uint32(17619)
+const OpcuaNodeIdServices_AUDITURLMISMATCHEVENTTYPE_STATUSCODEID uint32 = uint32(17620)
+const OpcuaNodeIdServices_AUDITACTIVATESESSIONEVENTTYPE_STATUSCODEID uint32 = uint32(17621)
+const OpcuaNodeIdServices_AUDITCANCELEVENTTYPE_STATUSCODEID uint32 = uint32(17622)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEVENTTYPE_STATUSCODEID uint32 = uint32(17623)
+const OpcuaNodeIdServices_AUDITCERTIFICATEDATAMISMATCHEVENTTYPE_STATUSCODEID uint32 = uint32(17624)
+const OpcuaNodeIdServices_AUDITCERTIFICATEEXPIREDEVENTTYPE_STATUSCODEID uint32 = uint32(17625)
+const OpcuaNodeIdServices_AUDITCERTIFICATEINVALIDEVENTTYPE_STATUSCODEID uint32 = uint32(17626)
+const OpcuaNodeIdServices_AUDITCERTIFICATEUNTRUSTEDEVENTTYPE_STATUSCODEID uint32 = uint32(17627)
+const OpcuaNodeIdServices_AUDITCERTIFICATEREVOKEDEVENTTYPE_STATUSCODEID uint32 = uint32(17628)
+const OpcuaNodeIdServices_AUDITCERTIFICATEMISMATCHEVENTTYPE_STATUSCODEID uint32 = uint32(17629)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONADDREADERGROUPGROUPMETHODTYPE uint32 = uint32(17630)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONADDREADERGROUPGROUPMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17631)
+const OpcuaNodeIdServices_SELECTIONLISTTYPE_SELECTIONS uint32 = uint32(17632)
+const OpcuaNodeIdServices_SELECTIONLISTTYPE_SELECTIONDESCRIPTIONS uint32 = uint32(17633)
+const OpcuaNodeIdServices_SERVER_LOCALTIME uint32 = uint32(17634)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_AVAILABLESTATES uint32 = uint32(17635)
+const OpcuaNodeIdServices_FINITESTATEMACHINETYPE_AVAILABLETRANSITIONS uint32 = uint32(17636)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_AVAILABLESTATES uint32 = uint32(17637)
+const OpcuaNodeIdServices_TEMPORARYFILETRANSFERTYPE_TRANSFERSTATE_PLACEHOLDER_AVAILABLETRANSITIONS uint32 = uint32(17638)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_AVAILABLESTATES uint32 = uint32(17639)
+const OpcuaNodeIdServices_FILETRANSFERSTATEMACHINETYPE_AVAILABLETRANSITIONS uint32 = uint32(17640)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE uint32 = uint32(17641)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_EVENTID uint32 = uint32(17642)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(17643)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_SOURCENODE uint32 = uint32(17644)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_SOURCENAME uint32 = uint32(17645)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_TIME uint32 = uint32(17646)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(17647)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_LOCALTIME uint32 = uint32(17648)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_MESSAGE uint32 = uint32(17649)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_SEVERITY uint32 = uint32(17650)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(17651)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_STATUS uint32 = uint32(17652)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_SERVERID uint32 = uint32(17653)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(17654)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(17655)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_METHODID uint32 = uint32(17656)
+const OpcuaNodeIdServices_ROLEMAPPINGRULECHANGEDAUDITEVENTTYPE_INPUTARGUMENTS uint32 = uint32(17657)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17658)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17659)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17660)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17661)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_AVAILABLESTATES uint32 = uint32(17662)
+const OpcuaNodeIdServices_SHELVEDSTATEMACHINETYPE_AVAILABLETRANSITIONS uint32 = uint32(17663)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17664)
+const OpcuaNodeIdServices_LIMITALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17665)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_AVAILABLESTATES uint32 = uint32(17666)
+const OpcuaNodeIdServices_EXCLUSIVELIMITSTATEMACHINETYPE_AVAILABLETRANSITIONS uint32 = uint32(17667)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17668)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17669)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_AVAILABLESTATES uint32 = uint32(17670)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LIMITSTATE_AVAILABLETRANSITIONS uint32 = uint32(17671)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17672)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17673)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17674)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17675)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17676)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17677)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_AVAILABLESTATES uint32 = uint32(17678)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LIMITSTATE_AVAILABLETRANSITIONS uint32 = uint32(17679)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17680)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17681)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17682)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17683)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_AVAILABLESTATES uint32 = uint32(17684)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LIMITSTATE_AVAILABLETRANSITIONS uint32 = uint32(17685)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17686)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17687)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17688)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17689)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_AVAILABLESTATES uint32 = uint32(17690)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LIMITSTATE_AVAILABLETRANSITIONS uint32 = uint32(17691)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17692)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17693)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17694)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17695)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17696)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17697)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17698)
+const OpcuaNodeIdServices_TRIPALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17699)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17700)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17701)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(17702)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(17703)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_AVAILABLESTATES uint32 = uint32(17704)
+const OpcuaNodeIdServices_PROGRAMSTATEMACHINETYPE_AVAILABLETRANSITIONS uint32 = uint32(17705)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_SELECTIONS uint32 = uint32(17706)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_TRANSPORTPROFILEURI_SELECTIONDESCRIPTIONS uint32 = uint32(17707)
+const OpcuaNodeIdServices_INTERFACETYPES uint32 = uint32(17708)
+const OpcuaNodeIdServices_RATIONALNUMBERTYPE uint32 = uint32(17709)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_TRANSPORTPROFILEURI_SELECTIONS uint32 = uint32(17710)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_TRANSPORTPROFILEURI_SELECTIONDESCRIPTIONS uint32 = uint32(17711)
+const OpcuaNodeIdServices_RATIONALNUMBERTYPE_NUMERATOR uint32 = uint32(17712)
+const OpcuaNodeIdServices_RATIONALNUMBERTYPE_DENOMINATOR uint32 = uint32(17713)
+const OpcuaNodeIdServices_VECTORTYPE uint32 = uint32(17714)
+const OpcuaNodeIdServices_VECTORTYPE_VECTORUNIT uint32 = uint32(17715)
+const OpcuaNodeIdServices_THREEDVECTORTYPE uint32 = uint32(17716)
+const OpcuaNodeIdServices_THREEDVECTORTYPE_VECTORUNIT uint32 = uint32(17717)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_DELETEFILESYSTEMOBJECT uint32 = uint32(17718)
+const OpcuaNodeIdServices_FILEDIRECTORYTYPE_FILEDIRECTORYNAME_PLACEHOLDER_DELETEFILESYSTEMOBJECT_INPUTARGUMENTS uint32 = uint32(17719)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONADDREADERGROUPGROUPMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17720)
+const OpcuaNodeIdServices_CONNECTIONTRANSPORTTYPE uint32 = uint32(17721)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_DELETEFILESYSTEMOBJECT uint32 = uint32(17722)
+const OpcuaNodeIdServices_FILESYSTEM_FILEDIRECTORYNAME_PLACEHOLDER_DELETEFILESYSTEMOBJECT_INPUTARGUMENTS uint32 = uint32(17723)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPE_MAXNETWORKMESSAGESIZE uint32 = uint32(17724)
+const OpcuaNodeIdServices_WRITERGROUPTYPE uint32 = uint32(17725)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_SECURITYMODE uint32 = uint32(17726)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_SECURITYGROUPID uint32 = uint32(17727)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_SECURITYKEYSERVICES uint32 = uint32(17728)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_MAXNETWORKMESSAGESIZE uint32 = uint32(17729)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_STATUS uint32 = uint32(17730)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_STATUS_STATE uint32 = uint32(17731)
+const OpcuaNodeIdServices_AUTHORIZATIONSERVICES uint32 = uint32(17732)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_STATUS_ENABLE uint32 = uint32(17734)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_STATUS_DISABLE uint32 = uint32(17735)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_WRITERGROUPID uint32 = uint32(17736)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_PUBLISHINGINTERVAL uint32 = uint32(17737)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_KEEPALIVETIME uint32 = uint32(17738)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_PRIORITY uint32 = uint32(17739)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_LOCALEIDS uint32 = uint32(17740)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_TRANSPORTSETTINGS uint32 = uint32(17741)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_MESSAGESETTINGS uint32 = uint32(17742)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER uint32 = uint32(17743)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETWRITERID uint32 = uint32(17744)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DATASETFIELDCONTENTMASK uint32 = uint32(17745)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_KEYFRAMECOUNT uint32 = uint32(17746)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(17747)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(17748)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS uint32 = uint32(17749)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(17750)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(17751)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(17752)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(17753)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(17754)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(17755)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(17756)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(17757)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(17758)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(17759)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(17760)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(17761)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(17762)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(17763)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(17764)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(17765)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(17766)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(17767)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(17768)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(17769)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(17770)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(17771)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(17772)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(17773)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(17774)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(17775)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17776)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17777)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(17778)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(17779)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(17780)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17781)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17782)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(17783)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(17784)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(17785)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(17786)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(17787)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(17788)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(17789)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(17790)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17791)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17792)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(17793)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(17794)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(17795)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17796)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17797)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(17798)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES uint32 = uint32(17799)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_ACTIVE uint32 = uint32(17800)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_CLASSIFICATION uint32 = uint32(17801)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(17802)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(17803)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER uint32 = uint32(17804)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER_DIAGNOSTICSLEVEL uint32 = uint32(17805)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE uint32 = uint32(17806)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE_DIAGNOSTICSLEVEL uint32 = uint32(17807)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION uint32 = uint32(17808)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(17809)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION uint32 = uint32(17810)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(17811)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS uint32 = uint32(17812)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(17813)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(17814)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(17815)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(17816)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(17817)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(17818)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALERROR uint32 = uint32(17819)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(17820)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(17821)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(17822)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(17823)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_RESET uint32 = uint32(17824)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_SUBERROR uint32 = uint32(17825)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS uint32 = uint32(17826)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(17827)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(17828)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(17829)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(17830)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(17831)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(17832)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(17833)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(17834)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17835)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17836)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(17837)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(17838)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(17839)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17840)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17841)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(17842)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(17843)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(17844)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(17845)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(17846)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(17847)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(17848)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(17849)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(17850)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(17851)
+const OpcuaNodeIdServices_AUTHORIZATIONSERVICECONFIGURATIONTYPE uint32 = uint32(17852)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(17853)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(17854)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(17855)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(17856)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(17857)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES uint32 = uint32(17858)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_SENTNETWORKMESSAGES uint32 = uint32(17859)
+const OpcuaNodeIdServices_AUTHORIZATIONSERVICECONFIGURATIONTYPE_SERVICECERTIFICATE uint32 = uint32(17860)
+const OpcuaNodeIdServices_DECIMALDATATYPE uint32 = uint32(17861)
+const OpcuaNodeIdServices_DECIMALDATATYPE_ENCODING_DEFAULTXML uint32 = uint32(17862)
+const OpcuaNodeIdServices_DECIMALDATATYPE_ENCODING_DEFAULTBINARY uint32 = uint32(17863)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_SENTNETWORKMESSAGES_ACTIVE uint32 = uint32(17864)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17865)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17866)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17867)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_UNSUPPRESS uint32 = uint32(17868)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_REMOVEFROMSERVICE uint32 = uint32(17869)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_PLACEINSERVICE uint32 = uint32(17870)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_SENTNETWORKMESSAGES_CLASSIFICATION uint32 = uint32(17871)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_SENTNETWORKMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(17872)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_SENTNETWORKMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(17873)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_FAILEDTRANSMISSIONS uint32 = uint32(17874)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_UNSUPPRESS uint32 = uint32(17875)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_REMOVEFROMSERVICE uint32 = uint32(17876)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_PLACEINSERVICE uint32 = uint32(17877)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_FAILEDTRANSMISSIONS_ACTIVE uint32 = uint32(17878)
+const OpcuaNodeIdServices_LIMITALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17879)
+const OpcuaNodeIdServices_LIMITALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17880)
+const OpcuaNodeIdServices_LIMITALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17881)
+const OpcuaNodeIdServices_LIMITALARMTYPE_UNSUPPRESS uint32 = uint32(17882)
+const OpcuaNodeIdServices_LIMITALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17883)
+const OpcuaNodeIdServices_LIMITALARMTYPE_PLACEINSERVICE uint32 = uint32(17884)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_FAILEDTRANSMISSIONS_CLASSIFICATION uint32 = uint32(17885)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17886)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17887)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17888)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_UNSUPPRESS uint32 = uint32(17889)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17890)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_PLACEINSERVICE uint32 = uint32(17891)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_FAILEDTRANSMISSIONS_DIAGNOSTICSLEVEL uint32 = uint32(17892)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17893)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17894)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17895)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_UNSUPPRESS uint32 = uint32(17896)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17897)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_PLACEINSERVICE uint32 = uint32(17898)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_FAILEDTRANSMISSIONS_TIMEFIRSTCHANGE uint32 = uint32(17899)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_ENCRYPTIONERRORS uint32 = uint32(17900)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_ENCRYPTIONERRORS_ACTIVE uint32 = uint32(17901)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_ENCRYPTIONERRORS_CLASSIFICATION uint32 = uint32(17902)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_ENCRYPTIONERRORS_DIAGNOSTICSLEVEL uint32 = uint32(17903)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17904)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_PLACEINSERVICE uint32 = uint32(17905)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_COUNTERS_ENCRYPTIONERRORS_TIMEFIRSTCHANGE uint32 = uint32(17906)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17907)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17908)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17909)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_UNSUPPRESS uint32 = uint32(17910)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17911)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_PLACEINSERVICE uint32 = uint32(17912)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS uint32 = uint32(17913)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17914)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17915)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17916)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_UNSUPPRESS uint32 = uint32(17917)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17918)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_PLACEINSERVICE uint32 = uint32(17919)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(17920)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17921)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17922)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17923)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_UNSUPPRESS uint32 = uint32(17924)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17925)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_PLACEINSERVICE uint32 = uint32(17926)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS uint32 = uint32(17927)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17928)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17929)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17930)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_UNSUPPRESS uint32 = uint32(17931)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17932)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_PLACEINSERVICE uint32 = uint32(17933)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(17934)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17935)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17936)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17937)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_UNSUPPRESS uint32 = uint32(17938)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17939)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_PLACEINSERVICE uint32 = uint32(17940)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_SECURITYTOKENID uint32 = uint32(17941)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17942)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17943)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17944)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_UNSUPPRESS uint32 = uint32(17945)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17946)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_PLACEINSERVICE uint32 = uint32(17947)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_SECURITYTOKENID_DIAGNOSTICSLEVEL uint32 = uint32(17948)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17949)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17950)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17951)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_UNSUPPRESS uint32 = uint32(17952)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17953)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_PLACEINSERVICE uint32 = uint32(17954)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_TIMETONEXTTOKENID uint32 = uint32(17955)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17956)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17957)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17958)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_UNSUPPRESS uint32 = uint32(17959)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17960)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_PLACEINSERVICE uint32 = uint32(17961)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_DIAGNOSTICS_LIVEVALUES_TIMETONEXTTOKENID_DIAGNOSTICSLEVEL uint32 = uint32(17962)
+const OpcuaNodeIdServices_TRIPALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17963)
+const OpcuaNodeIdServices_TRIPALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17964)
+const OpcuaNodeIdServices_TRIPALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17965)
+const OpcuaNodeIdServices_TRIPALARMTYPE_UNSUPPRESS uint32 = uint32(17966)
+const OpcuaNodeIdServices_TRIPALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17967)
+const OpcuaNodeIdServices_TRIPALARMTYPE_PLACEINSERVICE uint32 = uint32(17968)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_ADDDATASETWRITER uint32 = uint32(17969)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17970)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17971)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17972)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_UNSUPPRESS uint32 = uint32(17973)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17974)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_PLACEINSERVICE uint32 = uint32(17975)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_ADDDATASETWRITER_INPUTARGUMENTS uint32 = uint32(17976)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(17977)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(17978)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(17979)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_UNSUPPRESS uint32 = uint32(17980)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(17981)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_PLACEINSERVICE uint32 = uint32(17982)
+const OpcuaNodeIdServices_HASEFFECTENABLE uint32 = uint32(17983)
+const OpcuaNodeIdServices_HASEFFECTSUPPRESSED uint32 = uint32(17984)
+const OpcuaNodeIdServices_HASEFFECTUNSUPPRESSED uint32 = uint32(17985)
+const OpcuaNodeIdServices_AUDIOVARIABLETYPE uint32 = uint32(17986)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_ADDDATASETWRITER_OUTPUTARGUMENTS uint32 = uint32(17987)
+const OpcuaNodeIdServices_AUDIOVARIABLETYPE_LISTID uint32 = uint32(17988)
+const OpcuaNodeIdServices_AUDIOVARIABLETYPE_AGENCYID uint32 = uint32(17989)
+const OpcuaNodeIdServices_AUDIOVARIABLETYPE_VERSIONID uint32 = uint32(17990)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_STARTTIME uint32 = uint32(17991)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_REMOVEDATASETWRITER uint32 = uint32(17992)
+const OpcuaNodeIdServices_WRITERGROUPTYPE_REMOVEDATASETWRITER_INPUTARGUMENTS uint32 = uint32(17993)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEADDWRITERMETHODTYPE uint32 = uint32(17994)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEADDWRITERMETHODTYPE_INPUTARGUMENTS uint32 = uint32(17995)
+const OpcuaNodeIdServices_PUBSUBGROUPTYPEADDWRITERMETHODTYPE_OUTPUTARGUMENTS uint32 = uint32(17996)
+const OpcuaNodeIdServices_WRITERGROUPTRANSPORTTYPE uint32 = uint32(17997)
+const OpcuaNodeIdServices_WRITERGROUPMESSAGETYPE uint32 = uint32(17998)
+const OpcuaNodeIdServices_READERGROUPTYPE uint32 = uint32(17999)
+const OpcuaNodeIdServices_READERGROUPTYPE_SECURITYMODE uint32 = uint32(18000)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE uint32 = uint32(18001)
+const OpcuaNodeIdServices_READERGROUPTYPE_SECURITYGROUPID uint32 = uint32(18002)
+const OpcuaNodeIdServices_READERGROUPTYPE_SECURITYKEYSERVICES uint32 = uint32(18003)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_ENDPOINTURLS uint32 = uint32(18004)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_SERVICESTATUS uint32 = uint32(18005)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_UPDATECREDENTIAL uint32 = uint32(18006)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_UPDATECREDENTIAL_INPUTARGUMENTS uint32 = uint32(18007)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_DELETECREDENTIAL uint32 = uint32(18008)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEMETHODTYPE uint32 = uint32(18009)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEMETHODTYPE_INPUTARGUMENTS uint32 = uint32(18010)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE uint32 = uint32(18011)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_EVENTID uint32 = uint32(18012)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(18013)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_SOURCENODE uint32 = uint32(18014)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_SOURCENAME uint32 = uint32(18015)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_TIME uint32 = uint32(18016)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(18017)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_LOCALTIME uint32 = uint32(18018)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_MESSAGE uint32 = uint32(18019)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_SEVERITY uint32 = uint32(18020)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(18021)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_STATUS uint32 = uint32(18022)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_SERVERID uint32 = uint32(18023)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(18024)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(18025)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_METHODID uint32 = uint32(18026)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_INPUTARGUMENTS uint32 = uint32(18027)
+const OpcuaNodeIdServices_KEYCREDENTIALAUDITEVENTTYPE_RESOURCEURI uint32 = uint32(18028)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE uint32 = uint32(18029)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_EVENTID uint32 = uint32(18030)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(18031)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_SOURCENODE uint32 = uint32(18032)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_SOURCENAME uint32 = uint32(18033)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_TIME uint32 = uint32(18034)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(18035)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_LOCALTIME uint32 = uint32(18036)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_MESSAGE uint32 = uint32(18037)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_SEVERITY uint32 = uint32(18038)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(18039)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_STATUS uint32 = uint32(18040)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_SERVERID uint32 = uint32(18041)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(18042)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(18043)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_METHODID uint32 = uint32(18044)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_INPUTARGUMENTS uint32 = uint32(18045)
+const OpcuaNodeIdServices_KEYCREDENTIALUPDATEDAUDITEVENTTYPE_RESOURCEURI uint32 = uint32(18046)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE uint32 = uint32(18047)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_EVENTID uint32 = uint32(18048)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_EVENTTYPE uint32 = uint32(18049)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_SOURCENODE uint32 = uint32(18050)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_SOURCENAME uint32 = uint32(18051)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_TIME uint32 = uint32(18052)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_RECEIVETIME uint32 = uint32(18053)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_LOCALTIME uint32 = uint32(18054)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_MESSAGE uint32 = uint32(18055)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_SEVERITY uint32 = uint32(18056)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(18057)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_STATUS uint32 = uint32(18058)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_SERVERID uint32 = uint32(18059)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_CLIENTAUDITENTRYID uint32 = uint32(18060)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_CLIENTUSERID uint32 = uint32(18061)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_METHODID uint32 = uint32(18062)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_INPUTARGUMENTS uint32 = uint32(18063)
+const OpcuaNodeIdServices_KEYCREDENTIALDELETEDAUDITEVENTTYPE_RESOURCEURI uint32 = uint32(18064)
+const OpcuaNodeIdServices_READERGROUPTYPE_MAXNETWORKMESSAGESIZE uint32 = uint32(18065)
+const OpcuaNodeIdServices_READERGROUPTYPE_STATUS uint32 = uint32(18067)
+const OpcuaNodeIdServices_READERGROUPTYPE_STATUS_STATE uint32 = uint32(18068)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_RESOURCEURI uint32 = uint32(18069)
+const OpcuaNodeIdServices_AUTHORIZATIONSERVICECONFIGURATIONTYPE_SERVICEURI uint32 = uint32(18072)
+const OpcuaNodeIdServices_AUTHORIZATIONSERVICECONFIGURATIONTYPE_ISSUERENDPOINTURL uint32 = uint32(18073)
+const OpcuaNodeIdServices_READERGROUPTYPE_STATUS_ENABLE uint32 = uint32(18074)
+const OpcuaNodeIdServices_READERGROUPTYPE_STATUS_DISABLE uint32 = uint32(18075)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER uint32 = uint32(18076)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_PUBLISHERID uint32 = uint32(18077)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_WRITERGROUPID uint32 = uint32(18078)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DATASETWRITERID uint32 = uint32(18079)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DATASETMETADATA uint32 = uint32(18080)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DATASETFIELDCONTENTMASK uint32 = uint32(18081)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_MESSAGERECEIVETIMEOUT uint32 = uint32(18082)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_SECURITYMODE uint32 = uint32(18083)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_SECURITYGROUPID uint32 = uint32(18084)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_SECURITYKEYSERVICES uint32 = uint32(18085)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_TRANSPORTSETTINGS uint32 = uint32(18086)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_MESSAGESETTINGS uint32 = uint32(18087)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_STATUS uint32 = uint32(18088)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_STATUS_STATE uint32 = uint32(18089)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_STATUS_ENABLE uint32 = uint32(18090)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_STATUS_DISABLE uint32 = uint32(18091)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(18092)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18093)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18094)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18095)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18096)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18097)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18098)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(18099)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18100)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18101)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18102)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(18103)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(18104)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(18105)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(18106)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(18107)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(18108)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(18109)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(18110)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(18111)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(18112)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(18113)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(18114)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18115)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18116)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(18117)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(18118)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(18119)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18120)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18121)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(18122)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(18123)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(18124)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(18125)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(18126)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(18127)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(18128)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(18129)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18130)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18131)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(18132)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(18133)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(18134)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18135)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18136)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(18137)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES uint32 = uint32(18138)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_ACTIVE uint32 = uint32(18139)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_CLASSIFICATION uint32 = uint32(18140)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(18141)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(18142)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_DECRYPTIONERRORS uint32 = uint32(18143)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_DECRYPTIONERRORS_ACTIVE uint32 = uint32(18144)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_DECRYPTIONERRORS_CLASSIFICATION uint32 = uint32(18145)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_DECRYPTIONERRORS_DIAGNOSTICSLEVEL uint32 = uint32(18146)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_DECRYPTIONERRORS_TIMEFIRSTCHANGE uint32 = uint32(18147)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER uint32 = uint32(18148)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER_DIAGNOSTICSLEVEL uint32 = uint32(18149)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE uint32 = uint32(18150)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE_DIAGNOSTICSLEVEL uint32 = uint32(18151)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION uint32 = uint32(18152)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18153)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION uint32 = uint32(18154)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION uint32 = uint32(18155)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER uint32 = uint32(18156)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_RESOURCEURI uint32 = uint32(18157)
+const OpcuaNodeIdServices_READERGROUPTYPE_DATASETREADERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18158)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_ENDPOINTURLS uint32 = uint32(18159)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_SERVICESTATUS uint32 = uint32(18160)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_UPDATECREDENTIAL uint32 = uint32(18161)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_UPDATECREDENTIAL_INPUTARGUMENTS uint32 = uint32(18162)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_DELETECREDENTIAL uint32 = uint32(18163)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATION_SERVICENAME_PLACEHOLDER_PROFILEURI uint32 = uint32(18164)
+const OpcuaNodeIdServices_KEYCREDENTIALCONFIGURATIONTYPE_PROFILEURI uint32 = uint32(18165)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDEFINITION uint32 = uint32(18166)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDEFINITION_DATATYPEVERSION uint32 = uint32(18167)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_DATATYPEDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18168)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREFIELD uint32 = uint32(18169)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREFIELD_DATATYPEVERSION uint32 = uint32(18170)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREFIELD_DICTIONARYFRAGMENT uint32 = uint32(18171)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDEFINITION uint32 = uint32(18172)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDEFINITION_DATATYPEVERSION uint32 = uint32(18173)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_STRUCTUREDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18174)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDEFINITION uint32 = uint32(18175)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDEFINITION_DATATYPEVERSION uint32 = uint32(18176)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ENUMDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18177)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDEFINITION uint32 = uint32(18178)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDEFINITION_DATATYPEVERSION uint32 = uint32(18179)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_DATATYPEDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18180)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREFIELD uint32 = uint32(18181)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREFIELD_DATATYPEVERSION uint32 = uint32(18182)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREFIELD_DICTIONARYFRAGMENT uint32 = uint32(18183)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDEFINITION uint32 = uint32(18184)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDEFINITION_DATATYPEVERSION uint32 = uint32(18185)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_STRUCTUREDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18186)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDEFINITION uint32 = uint32(18187)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDEFINITION_DATATYPEVERSION uint32 = uint32(18188)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ENUMDEFINITION_DICTIONARYFRAGMENT uint32 = uint32(18189)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE uint32 = uint32(18190)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_ID uint32 = uint32(18191)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_NAME uint32 = uint32(18192)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18193)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18194)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18195)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18196)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18197)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18198)
+const OpcuaNodeIdServices_ALARMCONDITIONTYPE_RESET uint32 = uint32(18199)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_AUDIBLESOUND_LISTID uint32 = uint32(18200)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_AUDIBLESOUND_AGENCYID uint32 = uint32(18201)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_AUDIBLESOUND_VERSIONID uint32 = uint32(18202)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE uint32 = uint32(18203)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_ID uint32 = uint32(18204)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_NAME uint32 = uint32(18205)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_NUMBER uint32 = uint32(18206)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18207)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18208)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18209)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_TRUESTATE uint32 = uint32(18210)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_LATCHEDSTATE_FALSESTATE uint32 = uint32(18211)
+const OpcuaNodeIdServices_ALARMGROUPTYPE_ALARMCONDITIONINSTANCE_PLACEHOLDER_RESET uint32 = uint32(18212)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE uint32 = uint32(18213)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18214)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18215)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18216)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18217)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18218)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18219)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18220)
+const OpcuaNodeIdServices_LIMITALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18221)
+const OpcuaNodeIdServices_LIMITALARMTYPE_RESET uint32 = uint32(18222)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE uint32 = uint32(18223)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18224)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18225)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18226)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18227)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18228)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18229)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18230)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18231)
+const OpcuaNodeIdServices_EXCLUSIVELIMITALARMTYPE_RESET uint32 = uint32(18232)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE uint32 = uint32(18233)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18234)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18235)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18236)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18237)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18238)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18239)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18240)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18241)
+const OpcuaNodeIdServices_NONEXCLUSIVELIMITALARMTYPE_RESET uint32 = uint32(18242)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(18243)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(18244)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(18245)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE uint32 = uint32(18246)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18247)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18248)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18249)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18250)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18251)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18252)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18253)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18254)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_UNSUPPRESS uint32 = uint32(18255)
+const OpcuaNodeIdServices_NONEXCLUSIVELEVELALARMTYPE_RESET uint32 = uint32(18256)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE uint32 = uint32(18257)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18258)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18259)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18260)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18261)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18262)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18263)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18264)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18265)
+const OpcuaNodeIdServices_EXCLUSIVELEVELALARMTYPE_RESET uint32 = uint32(18266)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE uint32 = uint32(18267)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18268)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18269)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18270)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18271)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18272)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18273)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18274)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18275)
+const OpcuaNodeIdServices_NONEXCLUSIVEDEVIATIONALARMTYPE_RESET uint32 = uint32(18276)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE uint32 = uint32(18277)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18278)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18279)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18280)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18281)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18282)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18283)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18284)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18285)
+const OpcuaNodeIdServices_NONEXCLUSIVERATEOFCHANGEALARMTYPE_RESET uint32 = uint32(18286)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE uint32 = uint32(18287)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18288)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18289)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18290)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18291)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18292)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18293)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18294)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18295)
+const OpcuaNodeIdServices_EXCLUSIVEDEVIATIONALARMTYPE_RESET uint32 = uint32(18296)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE uint32 = uint32(18297)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18298)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18299)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18300)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18301)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18302)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18303)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18304)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18305)
+const OpcuaNodeIdServices_EXCLUSIVERATEOFCHANGEALARMTYPE_RESET uint32 = uint32(18306)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE uint32 = uint32(18307)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18308)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18309)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18310)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18311)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18312)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18313)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18314)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18315)
+const OpcuaNodeIdServices_DISCRETEALARMTYPE_RESET uint32 = uint32(18316)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE uint32 = uint32(18317)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18318)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18319)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18320)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18321)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18322)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18323)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18324)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18325)
+const OpcuaNodeIdServices_OFFNORMALALARMTYPE_RESET uint32 = uint32(18326)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE uint32 = uint32(18327)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18328)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18329)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18330)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18331)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18332)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18333)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18334)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18335)
+const OpcuaNodeIdServices_SYSTEMOFFNORMALALARMTYPE_RESET uint32 = uint32(18336)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE uint32 = uint32(18337)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18338)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18339)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18340)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18341)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18342)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18343)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18344)
+const OpcuaNodeIdServices_TRIPALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18345)
+const OpcuaNodeIdServices_TRIPALARMTYPE_RESET uint32 = uint32(18346)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE uint32 = uint32(18347)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_EVENTID uint32 = uint32(18348)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_EVENTTYPE uint32 = uint32(18349)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SOURCENODE uint32 = uint32(18350)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SOURCENAME uint32 = uint32(18351)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_TIME uint32 = uint32(18352)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_RECEIVETIME uint32 = uint32(18353)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LOCALTIME uint32 = uint32(18354)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_MESSAGE uint32 = uint32(18355)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SEVERITY uint32 = uint32(18356)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONCLASSID uint32 = uint32(18357)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(18358)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(18359)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(18360)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONNAME uint32 = uint32(18361)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_BRANCHID uint32 = uint32(18362)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_RETAIN uint32 = uint32(18363)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE uint32 = uint32(18364)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(18365)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(18366)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(18367)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18368)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(18369)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18370)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(18371)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(18372)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_QUALITY uint32 = uint32(18373)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(18374)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LASTSEVERITY uint32 = uint32(18375)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(18376)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_COMMENT uint32 = uint32(18377)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(18378)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CLIENTUSERID uint32 = uint32(18379)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_DISABLE uint32 = uint32(18380)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ENABLE uint32 = uint32(18381)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ADDCOMMENT uint32 = uint32(18382)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(18383)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONREFRESH uint32 = uint32(18384)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(18385)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(18386)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(18387)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE uint32 = uint32(18388)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_ID uint32 = uint32(18389)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(18390)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(18391)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18392)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(18393)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18394)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(18395)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(18396)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE uint32 = uint32(18397)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(18398)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(18399)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(18400)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18401)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(18402)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18403)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(18404)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(18405)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKNOWLEDGE uint32 = uint32(18406)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(18407)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRM uint32 = uint32(18408)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(18409)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE uint32 = uint32(18410)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_ID uint32 = uint32(18411)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(18412)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(18413)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18414)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(18415)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18416)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(18417)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(18418)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_INPUTNODE uint32 = uint32(18419)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(18420)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(18421)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(18422)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(18423)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18424)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(18425)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18426)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(18427)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(18428)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(18429)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(18430)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(18431)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(18432)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18433)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(18434)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18435)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(18436)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(18437)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE uint32 = uint32(18438)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(18439)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(18440)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(18441)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(18442)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18443)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(18444)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(18445)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(18446)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(18447)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(18448)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(18449)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(18450)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(18451)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(18452)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(18453)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(18454)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(18455)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(18456)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(18457)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_MAXTIMESHELVED uint32 = uint32(18458)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_AUDIBLEENABLED uint32 = uint32(18459)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_AUDIBLESOUND uint32 = uint32(18460)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(18461)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(18462)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(18463)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE uint32 = uint32(18464)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_ID uint32 = uint32(18465)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_NAME uint32 = uint32(18466)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(18467)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18468)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(18469)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18470)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(18471)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(18472)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ONDELAY uint32 = uint32(18473)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_OFFDELAY uint32 = uint32(18474)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(18475)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_FIRSTINGROUP uint32 = uint32(18476)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE uint32 = uint32(18477)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18478)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18479)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18480)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18481)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18482)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18483)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18484)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18485)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(18486)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_REALARMTIME uint32 = uint32(18487)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(18488)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SILENCE uint32 = uint32(18489)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_SUPPRESS uint32 = uint32(18490)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_UNSUPPRESS uint32 = uint32(18491)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(18492)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_PLACEINSERVICE uint32 = uint32(18493)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_RESET uint32 = uint32(18494)
+const OpcuaNodeIdServices_INSTRUMENTDIAGNOSTICALARMTYPE_NORMALSTATE uint32 = uint32(18495)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE uint32 = uint32(18496)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_EVENTID uint32 = uint32(18497)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_EVENTTYPE uint32 = uint32(18498)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SOURCENODE uint32 = uint32(18499)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SOURCENAME uint32 = uint32(18500)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_TIME uint32 = uint32(18501)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_RECEIVETIME uint32 = uint32(18502)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LOCALTIME uint32 = uint32(18503)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_MESSAGE uint32 = uint32(18504)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SEVERITY uint32 = uint32(18505)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONCLASSID uint32 = uint32(18506)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONCLASSNAME uint32 = uint32(18507)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONSUBCLASSID uint32 = uint32(18508)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONSUBCLASSNAME uint32 = uint32(18509)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONNAME uint32 = uint32(18510)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_BRANCHID uint32 = uint32(18511)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_RETAIN uint32 = uint32(18512)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE uint32 = uint32(18513)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_ID uint32 = uint32(18514)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_NAME uint32 = uint32(18515)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_NUMBER uint32 = uint32(18516)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18517)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_TRANSITIONTIME uint32 = uint32(18518)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18519)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_TRUESTATE uint32 = uint32(18520)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLEDSTATE_FALSESTATE uint32 = uint32(18521)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_QUALITY uint32 = uint32(18522)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_QUALITY_SOURCETIMESTAMP uint32 = uint32(18523)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LASTSEVERITY uint32 = uint32(18524)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LASTSEVERITY_SOURCETIMESTAMP uint32 = uint32(18525)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_COMMENT uint32 = uint32(18526)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_COMMENT_SOURCETIMESTAMP uint32 = uint32(18527)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CLIENTUSERID uint32 = uint32(18528)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_DISABLE uint32 = uint32(18529)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ENABLE uint32 = uint32(18530)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ADDCOMMENT uint32 = uint32(18531)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ADDCOMMENT_INPUTARGUMENTS uint32 = uint32(18532)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONREFRESH uint32 = uint32(18533)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONREFRESH_INPUTARGUMENTS uint32 = uint32(18534)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONREFRESH2 uint32 = uint32(18535)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONDITIONREFRESH2_INPUTARGUMENTS uint32 = uint32(18536)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE uint32 = uint32(18537)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_ID uint32 = uint32(18538)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_NAME uint32 = uint32(18539)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_NUMBER uint32 = uint32(18540)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18541)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_TRANSITIONTIME uint32 = uint32(18542)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18543)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_TRUESTATE uint32 = uint32(18544)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKEDSTATE_FALSESTATE uint32 = uint32(18545)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE uint32 = uint32(18546)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_ID uint32 = uint32(18547)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_NAME uint32 = uint32(18548)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_NUMBER uint32 = uint32(18549)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18550)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_TRANSITIONTIME uint32 = uint32(18551)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18552)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_TRUESTATE uint32 = uint32(18553)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRMEDSTATE_FALSESTATE uint32 = uint32(18554)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKNOWLEDGE uint32 = uint32(18555)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACKNOWLEDGE_INPUTARGUMENTS uint32 = uint32(18556)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRM uint32 = uint32(18557)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_CONFIRM_INPUTARGUMENTS uint32 = uint32(18558)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE uint32 = uint32(18559)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_ID uint32 = uint32(18560)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_NAME uint32 = uint32(18561)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_NUMBER uint32 = uint32(18562)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18563)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_TRANSITIONTIME uint32 = uint32(18564)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18565)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_TRUESTATE uint32 = uint32(18566)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ACTIVESTATE_FALSESTATE uint32 = uint32(18567)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_INPUTNODE uint32 = uint32(18568)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE uint32 = uint32(18569)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_ID uint32 = uint32(18570)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_NAME uint32 = uint32(18571)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_NUMBER uint32 = uint32(18572)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18573)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_TRANSITIONTIME uint32 = uint32(18574)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18575)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_TRUESTATE uint32 = uint32(18576)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDSTATE_FALSESTATE uint32 = uint32(18577)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE uint32 = uint32(18578)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_ID uint32 = uint32(18579)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_NAME uint32 = uint32(18580)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_NUMBER uint32 = uint32(18581)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18582)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_TRANSITIONTIME uint32 = uint32(18583)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18584)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_TRUESTATE uint32 = uint32(18585)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OUTOFSERVICESTATE_FALSESTATE uint32 = uint32(18586)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE uint32 = uint32(18587)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE uint32 = uint32(18588)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_ID uint32 = uint32(18589)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NAME uint32 = uint32(18590)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_NUMBER uint32 = uint32(18591)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_CURRENTSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18592)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION uint32 = uint32(18593)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_ID uint32 = uint32(18594)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NAME uint32 = uint32(18595)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_NUMBER uint32 = uint32(18596)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_TRANSITIONTIME uint32 = uint32(18597)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_LASTTRANSITION_EFFECTIVETRANSITIONTIME uint32 = uint32(18598)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_AVAILABLESTATES uint32 = uint32(18599)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_AVAILABLETRANSITIONS uint32 = uint32(18600)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_UNSHELVETIME uint32 = uint32(18601)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_TIMEDSHELVE uint32 = uint32(18602)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_TIMEDSHELVE_INPUTARGUMENTS uint32 = uint32(18603)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_UNSHELVE uint32 = uint32(18604)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SHELVINGSTATE_ONESHOTSHELVE uint32 = uint32(18605)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESSEDORSHELVED uint32 = uint32(18606)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_MAXTIMESHELVED uint32 = uint32(18607)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_AUDIBLEENABLED uint32 = uint32(18608)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_AUDIBLESOUND uint32 = uint32(18609)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_AUDIBLESOUND_LISTID uint32 = uint32(18610)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_AUDIBLESOUND_AGENCYID uint32 = uint32(18611)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_AUDIBLESOUND_VERSIONID uint32 = uint32(18612)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE uint32 = uint32(18613)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_ID uint32 = uint32(18614)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_NAME uint32 = uint32(18615)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_NUMBER uint32 = uint32(18616)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18617)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_TRANSITIONTIME uint32 = uint32(18618)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18619)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_TRUESTATE uint32 = uint32(18620)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCESTATE_FALSESTATE uint32 = uint32(18621)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ONDELAY uint32 = uint32(18622)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_OFFDELAY uint32 = uint32(18623)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_FIRSTINGROUPFLAG uint32 = uint32(18624)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_FIRSTINGROUP uint32 = uint32(18625)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE uint32 = uint32(18626)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18627)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18628)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18629)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18630)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18631)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18632)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18633)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18634)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_ALARMGROUP_PLACEHOLDER uint32 = uint32(18635)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_REALARMTIME uint32 = uint32(18636)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_REALARMREPEATCOUNT uint32 = uint32(18637)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SILENCE uint32 = uint32(18638)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_SUPPRESS uint32 = uint32(18639)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_UNSUPPRESS uint32 = uint32(18640)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_REMOVEFROMSERVICE uint32 = uint32(18641)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_PLACEINSERVICE uint32 = uint32(18642)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_RESET uint32 = uint32(18643)
+const OpcuaNodeIdServices_SYSTEMDIAGNOSTICALARMTYPE_NORMALSTATE uint32 = uint32(18644)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE uint32 = uint32(18645)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18646)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18647)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18648)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18649)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18650)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18651)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18652)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18653)
+const OpcuaNodeIdServices_CERTIFICATEEXPIRATIONALARMTYPE_RESET uint32 = uint32(18654)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE uint32 = uint32(18655)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_ID uint32 = uint32(18656)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_NAME uint32 = uint32(18657)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_NUMBER uint32 = uint32(18658)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_EFFECTIVEDISPLAYNAME uint32 = uint32(18659)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_TRANSITIONTIME uint32 = uint32(18660)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_EFFECTIVETRANSITIONTIME uint32 = uint32(18661)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_TRUESTATE uint32 = uint32(18662)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_LATCHEDSTATE_FALSESTATE uint32 = uint32(18663)
+const OpcuaNodeIdServices_DISCREPANCYALARMTYPE_RESET uint32 = uint32(18664)
+const OpcuaNodeIdServices_STATISTICALCONDITIONCLASSTYPE uint32 = uint32(18665)
+const OpcuaNodeIdServices_ALARMMETRICSTYPE_RESET uint32 = uint32(18666)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(18667)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18668)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18669)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18670)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18671)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18672)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18673)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(18674)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18675)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18676)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18677)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(18678)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(18679)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(18680)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(18681)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(18682)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(18683)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(18684)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(18685)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(18686)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(18687)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(18688)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(18689)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18690)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18691)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(18692)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(18693)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(18694)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18695)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18696)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(18697)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(18698)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(18699)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(18700)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(18701)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(18702)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(18703)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(18704)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18705)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18706)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(18707)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(18708)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(18709)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18710)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18711)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(18712)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_RESOLVEDADDRESS uint32 = uint32(18713)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_CONNECTIONNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_RESOLVEDADDRESS_DIAGNOSTICSLEVEL uint32 = uint32(18714)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS uint32 = uint32(18715)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18716)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18717)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18718)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18719)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18720)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18721)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALERROR uint32 = uint32(18722)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18723)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18724)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18725)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(18726)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_RESET uint32 = uint32(18727)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_SUBERROR uint32 = uint32(18728)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS uint32 = uint32(18729)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(18730)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(18731)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(18732)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(18733)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(18734)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(18735)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(18736)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(18737)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18738)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18739)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(18740)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(18741)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(18742)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18743)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18744)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(18745)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(18746)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(18747)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(18748)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(18749)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(18750)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(18751)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(18752)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18753)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18754)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(18755)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(18756)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(18757)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18758)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18759)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES uint32 = uint32(18760)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS uint32 = uint32(18761)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(18762)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETREADERS uint32 = uint32(18763)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_CONFIGUREDDATASETREADERS_DIAGNOSTICSLEVEL uint32 = uint32(18764)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS uint32 = uint32(18765)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETWRITERS_DIAGNOSTICSLEVEL uint32 = uint32(18766)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETREADERS uint32 = uint32(18767)
+const OpcuaNodeIdServices_PUBLISHSUBSCRIBETYPE_DIAGNOSTICS_LIVEVALUES_OPERATIONALDATASETREADERS_DIAGNOSTICSLEVEL uint32 = uint32(18768)
+const OpcuaNodeIdServices_THREEDVECTORTYPE_X uint32 = uint32(18769)
+const OpcuaNodeIdServices_THREEDVECTORTYPE_Y uint32 = uint32(18770)
+const OpcuaNodeIdServices_THREEDVECTORTYPE_Z uint32 = uint32(18771)
+const OpcuaNodeIdServices_CARTESIANCOORDINATESTYPE uint32 = uint32(18772)
+const OpcuaNodeIdServices_CARTESIANCOORDINATESTYPE_LENGTHUNIT uint32 = uint32(18773)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATESTYPE uint32 = uint32(18774)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATESTYPE_LENGTHUNIT uint32 = uint32(18775)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATESTYPE_X uint32 = uint32(18776)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATESTYPE_Y uint32 = uint32(18777)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATESTYPE_Z uint32 = uint32(18778)
+const OpcuaNodeIdServices_ORIENTATIONTYPE uint32 = uint32(18779)
+const OpcuaNodeIdServices_ORIENTATIONTYPE_ANGLEUNIT uint32 = uint32(18780)
+const OpcuaNodeIdServices_THREEDORIENTATIONTYPE uint32 = uint32(18781)
+const OpcuaNodeIdServices_THREEDORIENTATIONTYPE_ANGLEUNIT uint32 = uint32(18782)
+const OpcuaNodeIdServices_THREEDORIENTATIONTYPE_A uint32 = uint32(18783)
+const OpcuaNodeIdServices_THREEDORIENTATIONTYPE_B uint32 = uint32(18784)
+const OpcuaNodeIdServices_THREEDORIENTATIONTYPE_C uint32 = uint32(18785)
+const OpcuaNodeIdServices_FRAMETYPE uint32 = uint32(18786)
+const OpcuaNodeIdServices_FRAMETYPE_ORIENTATION uint32 = uint32(18787)
+const OpcuaNodeIdServices_FRAMETYPE_CONSTANT uint32 = uint32(18788)
+const OpcuaNodeIdServices_FRAMETYPE_BASEFRAME uint32 = uint32(18789)
+const OpcuaNodeIdServices_FRAMETYPE_FIXEDBASE uint32 = uint32(18790)
+const OpcuaNodeIdServices_THREEDFRAMETYPE uint32 = uint32(18791)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_ORIENTATION uint32 = uint32(18792)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CONSTANT uint32 = uint32(18793)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_BASEFRAME uint32 = uint32(18794)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_FIXEDBASE uint32 = uint32(18795)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CARTESIANCOORDINATES uint32 = uint32(18796)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CARTESIANCOORDINATES_LENGTHUNIT uint32 = uint32(18797)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CARTESIANCOORDINATES_X uint32 = uint32(18798)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CARTESIANCOORDINATES_Y uint32 = uint32(18799)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_CARTESIANCOORDINATES_Z uint32 = uint32(18800)
+const OpcuaNodeIdServices_FRAMETYPE_CARTESIANCOORDINATES uint32 = uint32(18801)
+const OpcuaNodeIdServices_FRAMETYPE_CARTESIANCOORDINATES_LENGTHUNIT uint32 = uint32(18802)
+const OpcuaNodeIdServices_FRAMETYPE_ORIENTATION_ANGLEUNIT uint32 = uint32(18803)
+const OpcuaNodeIdServices_HASWRITERGROUP uint32 = uint32(18804)
+const OpcuaNodeIdServices_HASREADERGROUP uint32 = uint32(18805)
+const OpcuaNodeIdServices_RATIONALNUMBER uint32 = uint32(18806)
+const OpcuaNodeIdServices_VECTOR uint32 = uint32(18807)
+const OpcuaNodeIdServices_THREEDVECTOR uint32 = uint32(18808)
+const OpcuaNodeIdServices_CARTESIANCOORDINATES uint32 = uint32(18809)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATES uint32 = uint32(18810)
+const OpcuaNodeIdServices_ORIENTATION uint32 = uint32(18811)
+const OpcuaNodeIdServices_THREEDORIENTATION uint32 = uint32(18812)
+const OpcuaNodeIdServices_FRAME uint32 = uint32(18813)
+const OpcuaNodeIdServices_THREEDFRAME uint32 = uint32(18814)
+const OpcuaNodeIdServices_RATIONALNUMBER_ENCODING_DEFAULTBINARY uint32 = uint32(18815)
+const OpcuaNodeIdServices_VECTOR_ENCODING_DEFAULTBINARY uint32 = uint32(18816)
+const OpcuaNodeIdServices_THREEDVECTOR_ENCODING_DEFAULTBINARY uint32 = uint32(18817)
+const OpcuaNodeIdServices_CARTESIANCOORDINATES_ENCODING_DEFAULTBINARY uint32 = uint32(18818)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATES_ENCODING_DEFAULTBINARY uint32 = uint32(18819)
+const OpcuaNodeIdServices_ORIENTATION_ENCODING_DEFAULTBINARY uint32 = uint32(18820)
+const OpcuaNodeIdServices_THREEDORIENTATION_ENCODING_DEFAULTBINARY uint32 = uint32(18821)
+const OpcuaNodeIdServices_FRAME_ENCODING_DEFAULTBINARY uint32 = uint32(18822)
+const OpcuaNodeIdServices_THREEDFRAME_ENCODING_DEFAULTBINARY uint32 = uint32(18823)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RATIONALNUMBER uint32 = uint32(18824)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RATIONALNUMBER_DATATYPEVERSION uint32 = uint32(18825)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_RATIONALNUMBER_DICTIONARYFRAGMENT uint32 = uint32(18826)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_VECTOR uint32 = uint32(18827)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_VECTOR_DATATYPEVERSION uint32 = uint32(18828)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_VECTOR_DICTIONARYFRAGMENT uint32 = uint32(18829)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDVECTOR uint32 = uint32(18830)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDVECTOR_DATATYPEVERSION uint32 = uint32(18831)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDVECTOR_DICTIONARYFRAGMENT uint32 = uint32(18832)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CARTESIANCOORDINATES uint32 = uint32(18833)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CARTESIANCOORDINATES_DATATYPEVERSION uint32 = uint32(18834)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_CARTESIANCOORDINATES_DICTIONARYFRAGMENT uint32 = uint32(18835)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDCARTESIANCOORDINATES uint32 = uint32(18836)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDCARTESIANCOORDINATES_DATATYPEVERSION uint32 = uint32(18837)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDCARTESIANCOORDINATES_DICTIONARYFRAGMENT uint32 = uint32(18838)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ORIENTATION uint32 = uint32(18839)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ORIENTATION_DATATYPEVERSION uint32 = uint32(18840)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_ORIENTATION_DICTIONARYFRAGMENT uint32 = uint32(18841)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDORIENTATION uint32 = uint32(18842)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDORIENTATION_DATATYPEVERSION uint32 = uint32(18843)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDORIENTATION_DICTIONARYFRAGMENT uint32 = uint32(18844)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FRAME uint32 = uint32(18845)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FRAME_DATATYPEVERSION uint32 = uint32(18846)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_FRAME_DICTIONARYFRAGMENT uint32 = uint32(18847)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDFRAME uint32 = uint32(18848)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDFRAME_DATATYPEVERSION uint32 = uint32(18849)
+const OpcuaNodeIdServices_OPCUA_BINARYSCHEMA_THREEDFRAME_DICTIONARYFRAGMENT uint32 = uint32(18850)
+const OpcuaNodeIdServices_RATIONALNUMBER_ENCODING_DEFAULTXML uint32 = uint32(18851)
+const OpcuaNodeIdServices_VECTOR_ENCODING_DEFAULTXML uint32 = uint32(18852)
+const OpcuaNodeIdServices_THREEDVECTOR_ENCODING_DEFAULTXML uint32 = uint32(18853)
+const OpcuaNodeIdServices_CARTESIANCOORDINATES_ENCODING_DEFAULTXML uint32 = uint32(18854)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATES_ENCODING_DEFAULTXML uint32 = uint32(18855)
+const OpcuaNodeIdServices_ORIENTATION_ENCODING_DEFAULTXML uint32 = uint32(18856)
+const OpcuaNodeIdServices_THREEDORIENTATION_ENCODING_DEFAULTXML uint32 = uint32(18857)
+const OpcuaNodeIdServices_FRAME_ENCODING_DEFAULTXML uint32 = uint32(18858)
+const OpcuaNodeIdServices_THREEDFRAME_ENCODING_DEFAULTXML uint32 = uint32(18859)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RATIONALNUMBER uint32 = uint32(18860)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RATIONALNUMBER_DATATYPEVERSION uint32 = uint32(18861)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_RATIONALNUMBER_DICTIONARYFRAGMENT uint32 = uint32(18862)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_VECTOR uint32 = uint32(18863)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_VECTOR_DATATYPEVERSION uint32 = uint32(18864)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_VECTOR_DICTIONARYFRAGMENT uint32 = uint32(18865)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDVECTOR uint32 = uint32(18866)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDVECTOR_DATATYPEVERSION uint32 = uint32(18867)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDVECTOR_DICTIONARYFRAGMENT uint32 = uint32(18868)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CARTESIANCOORDINATES uint32 = uint32(18869)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CARTESIANCOORDINATES_DATATYPEVERSION uint32 = uint32(18870)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(18871)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18872)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18873)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18874)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18875)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18876)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18877)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(18878)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18879)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18880)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18881)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(18882)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(18883)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(18884)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(18885)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(18886)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(18887)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(18888)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(18889)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(18890)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(18891)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(18892)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(18893)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18894)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18895)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(18896)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(18897)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(18898)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18899)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18900)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(18901)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(18902)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(18903)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(18904)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(18905)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(18906)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(18907)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(18908)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18909)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18910)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(18911)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(18912)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(18913)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18914)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18915)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(18916)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES uint32 = uint32(18917)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_ACTIVE uint32 = uint32(18918)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_CLASSIFICATION uint32 = uint32(18919)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(18920)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(18921)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER uint32 = uint32(18922)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER_DIAGNOSTICSLEVEL uint32 = uint32(18923)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE uint32 = uint32(18924)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE_DIAGNOSTICSLEVEL uint32 = uint32(18925)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION uint32 = uint32(18926)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18927)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION uint32 = uint32(18928)
+const OpcuaNodeIdServices_PUBLISHEDDATASETTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18929)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(18930)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18931)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18932)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18933)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18934)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18935)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18936)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(18937)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18938)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18939)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18940)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(18941)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(18942)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(18943)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(18944)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(18945)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(18946)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(18947)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(18948)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(18949)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(18950)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(18951)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(18952)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18953)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18954)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(18955)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(18956)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(18957)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18958)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18959)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(18960)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(18961)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(18962)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(18963)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(18964)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(18965)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(18966)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(18967)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(18968)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(18969)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(18970)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(18971)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(18972)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(18973)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(18974)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(18975)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES uint32 = uint32(18976)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_ACTIVE uint32 = uint32(18977)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_CLASSIFICATION uint32 = uint32(18978)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(18979)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(18980)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER uint32 = uint32(18981)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER_DIAGNOSTICSLEVEL uint32 = uint32(18982)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE uint32 = uint32(18983)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE_DIAGNOSTICSLEVEL uint32 = uint32(18984)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION uint32 = uint32(18985)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18986)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION uint32 = uint32(18987)
+const OpcuaNodeIdServices_PUBLISHEDDATAITEMSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(18988)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(18989)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_DIAGNOSTICSLEVEL uint32 = uint32(18990)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION uint32 = uint32(18991)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_ACTIVE uint32 = uint32(18992)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_CLASSIFICATION uint32 = uint32(18993)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_DIAGNOSTICSLEVEL uint32 = uint32(18994)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALINFORMATION_TIMEFIRSTCHANGE uint32 = uint32(18995)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR uint32 = uint32(18996)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_ACTIVE uint32 = uint32(18997)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_CLASSIFICATION uint32 = uint32(18998)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_DIAGNOSTICSLEVEL uint32 = uint32(18999)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_TOTALERROR_TIMEFIRSTCHANGE uint32 = uint32(19000)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_RESET uint32 = uint32(19001)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_SUBERROR uint32 = uint32(19002)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS uint32 = uint32(19003)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR uint32 = uint32(19004)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_ACTIVE uint32 = uint32(19005)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_CLASSIFICATION uint32 = uint32(19006)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_DIAGNOSTICSLEVEL uint32 = uint32(19007)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEERROR_TIMEFIRSTCHANGE uint32 = uint32(19008)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD uint32 = uint32(19009)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_ACTIVE uint32 = uint32(19010)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_CLASSIFICATION uint32 = uint32(19011)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(19012)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(19013)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT uint32 = uint32(19014)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_ACTIVE uint32 = uint32(19015)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_CLASSIFICATION uint32 = uint32(19016)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(19017)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(19018)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR uint32 = uint32(19019)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_ACTIVE uint32 = uint32(19020)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_CLASSIFICATION uint32 = uint32(19021)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_DIAGNOSTICSLEVEL uint32 = uint32(19022)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEOPERATIONALFROMERROR_TIMEFIRSTCHANGE uint32 = uint32(19023)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT uint32 = uint32(19024)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_ACTIVE uint32 = uint32(19025)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_CLASSIFICATION uint32 = uint32(19026)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_DIAGNOSTICSLEVEL uint32 = uint32(19027)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEPAUSEDBYPARENT_TIMEFIRSTCHANGE uint32 = uint32(19028)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD uint32 = uint32(19029)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_ACTIVE uint32 = uint32(19030)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_CLASSIFICATION uint32 = uint32(19031)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_DIAGNOSTICSLEVEL uint32 = uint32(19032)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_STATEDISABLEDBYMETHOD_TIMEFIRSTCHANGE uint32 = uint32(19033)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES uint32 = uint32(19034)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES uint32 = uint32(19035)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_ACTIVE uint32 = uint32(19036)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_CLASSIFICATION uint32 = uint32(19037)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_DIAGNOSTICSLEVEL uint32 = uint32(19038)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_COUNTERS_FAILEDDATASETMESSAGES_TIMEFIRSTCHANGE uint32 = uint32(19039)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER uint32 = uint32(19040)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MESSAGESEQUENCENUMBER_DIAGNOSTICSLEVEL uint32 = uint32(19041)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE uint32 = uint32(19042)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_STATUSCODE_DIAGNOSTICSLEVEL uint32 = uint32(19043)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION uint32 = uint32(19044)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MAJORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(19045)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION uint32 = uint32(19046)
+const OpcuaNodeIdServices_PUBLISHEDEVENTSTYPE_DATASETWRITERNAME_PLACEHOLDER_DIAGNOSTICS_LIVEVALUES_MINORVERSION_DIAGNOSTICSLEVEL uint32 = uint32(19047)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_CARTESIANCOORDINATES_DICTIONARYFRAGMENT uint32 = uint32(19048)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDCARTESIANCOORDINATES uint32 = uint32(19049)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDCARTESIANCOORDINATES_DATATYPEVERSION uint32 = uint32(19050)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDCARTESIANCOORDINATES_DICTIONARYFRAGMENT uint32 = uint32(19051)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ORIENTATION uint32 = uint32(19052)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ORIENTATION_DATATYPEVERSION uint32 = uint32(19053)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_ORIENTATION_DICTIONARYFRAGMENT uint32 = uint32(19054)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDORIENTATION uint32 = uint32(19055)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDORIENTATION_DATATYPEVERSION uint32 = uint32(19056)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDORIENTATION_DICTIONARYFRAGMENT uint32 = uint32(19057)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FRAME uint32 = uint32(19058)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FRAME_DATATYPEVERSION uint32 = uint32(19059)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_FRAME_DICTIONARYFRAGMENT uint32 = uint32(19060)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDFRAME uint32 = uint32(19061)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDFRAME_DATATYPEVERSION uint32 = uint32(19062)
+const OpcuaNodeIdServices_OPCUA_XMLSCHEMA_THREEDFRAME_DICTIONARYFRAGMENT uint32 = uint32(19063)
+const OpcuaNodeIdServices_RATIONALNUMBER_ENCODING_DEFAULTJSON uint32 = uint32(19064)
+const OpcuaNodeIdServices_VECTOR_ENCODING_DEFAULTJSON uint32 = uint32(19065)
+const OpcuaNodeIdServices_THREEDVECTOR_ENCODING_DEFAULTJSON uint32 = uint32(19066)
+const OpcuaNodeIdServices_CARTESIANCOORDINATES_ENCODING_DEFAULTJSON uint32 = uint32(19067)
+const OpcuaNodeIdServices_THREEDCARTESIANCOORDINATES_ENCODING_DEFAULTJSON uint32 = uint32(19068)
+const OpcuaNodeIdServices_ORIENTATION_ENCODING_DEFAULTJSON uint32 = uint32(19069)
+const OpcuaNodeIdServices_THREEDORIENTATION_ENCODING_DEFAULTJSON uint32 = uint32(19070)
+const OpcuaNodeIdServices_FRAME_ENCODING_DEFAULTJSON uint32 = uint32(19071)
+const OpcuaNodeIdServices_THREEDFRAME_ENCODING_DEFAULTJSON uint32 = uint32(19072)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_ORIENTATION_ANGLEUNIT uint32 = uint32(19073)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_ORIENTATION_A uint32 = uint32(19074)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_ORIENTATION_B uint32 = uint32(19075)
+const OpcuaNodeIdServices_THREEDFRAMETYPE_ORIENTATION_C uint32 = uint32(19076)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE uint32 = uint32(19077)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_DEFINITION uint32 = uint32(19078)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_VALUEPRECISION uint32 = uint32(19079)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_ENUMVALUES uint32 = uint32(19080)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_VALUEASTEXT uint32 = uint32(19081)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_ENUMDICTIONARYENTRIES uint32 = uint32(19082)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETEBASETYPE_VALUEASDICTIONARYENTRIES uint32 = uint32(19083)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE uint32 = uint32(19084)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_DEFINITION uint32 = uint32(19085)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_VALUEPRECISION uint32 = uint32(19086)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_ENUMVALUES uint32 = uint32(19087)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_VALUEASTEXT uint32 = uint32(19088)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_ENUMDICTIONARYENTRIES uint32 = uint32(19089)
+const OpcuaNodeIdServices_MULTISTATEDICTIONARYENTRYDISCRETETYPE_VALUEASDICTIONARYENTRIES uint32 = uint32(19090)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIES_SERVERTIMESTAMPSUPPORTED uint32 = uint32(19091)
+const OpcuaNodeIdServices_HISTORICALDATACONFIGURATIONTYPE_SERVERTIMESTAMPSUPPORTED uint32 = uint32(19092)
+const OpcuaNodeIdServices_HACONFIGURATION_SERVERTIMESTAMPSUPPORTED uint32 = uint32(19093)
+const OpcuaNodeIdServices_HISTORYSERVERCAPABILITIESTYPE_SERVERTIMESTAMPSUPPORTED uint32 = uint32(19094)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE uint32 = uint32(19095)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_EVENTID uint32 = uint32(19096)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_EVENTTYPE uint32 = uint32(19097)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_SOURCENODE uint32 = uint32(19098)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_SOURCENAME uint32 = uint32(19099)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_TIME uint32 = uint32(19100)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_RECEIVETIME uint32 = uint32(19101)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_LOCALTIME uint32 = uint32(19102)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_MESSAGE uint32 = uint32(19103)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_SEVERITY uint32 = uint32(19104)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_ACTIONTIMESTAMP uint32 = uint32(19105)
+const OpcuaNodeIdServices_AUDITHISTORYANNOTATIONUPDATEEVENTTYPE_STATUS uint32 = uint32(19106)
+const OpcuaNodeIdServices_PUBSUBCONNECTIONTYPE_WRITERGROUPNAME_PLACEHOLDER_DIAGNOSTICS uint32 = uint32(19107)
... 1116283 lines suppressed ...


[plc4x] 01/02: fix(opcua): use constants for OpcuaNodeIdServices as enum explodes in java for now

Posted by sr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 673de2c62b5af77d13b72ffe9e4f3dc2ec7a34bd
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon Aug 28 11:37:24 2023 +0200

    fix(opcua): use constants for OpcuaNodeIdServices as enum explodes in java for now
---
 protocols/opcua/src/main/xslt/opc-services.xsl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/protocols/opcua/src/main/xslt/opc-services.xsl b/protocols/opcua/src/main/xslt/opc-services.xsl
index 069bbf9959..545cb85625 100644
--- a/protocols/opcua/src/main/xslt/opc-services.xsl
+++ b/protocols/opcua/src/main/xslt/opc-services.xsl
@@ -50,12 +50,12 @@
 
     <xsl:template name="servicesEnumParsing" >
         <xsl:variable name="tokenizedLine" select="tokenize($servicesEnumFile, '\r\n|\r|\n')" />
-[enum int 32 OpcuaNodeIdServices<xsl:text>
+[type OpcuaNodeIdServices<xsl:text>
     </xsl:text>
         <xsl:for-each select="$tokenizedLine">
             <xsl:variable select="tokenize(., ',')" name="values" />
             <xsl:choose>
-                <xsl:when test="$values[2]">['<xsl:value-of select="$values[2]"/>' <xsl:value-of select="$values[1]"/>]<xsl:text>
+                <xsl:when test="$values[2]">[const uint 32 <xsl:value-of select="$values[1]"/> '<xsl:value-of select="$values[2]"/>']<xsl:text>
     </xsl:text>
                 </xsl:when>
             </xsl:choose>